Qt 4.8
Classes | Public Functions | Properties | List of all members
QWindowsFileSystemWatcherEngine Class Reference

#include <qfilesystemwatcher_win_p.h>

Inheritance diagram for QWindowsFileSystemWatcherEngine:
QFileSystemWatcherEngine QThread QObject

Classes

class  Handle
 
class  PathInfo
 

Public Functions

QStringList addPaths (const QStringList &paths, QStringList *files, QStringList *directories)
 
 QWindowsFileSystemWatcherEngine ()
 
QStringList removePaths (const QStringList &paths, QStringList *files, QStringList *directories)
 
void stop ()
 
 ~QWindowsFileSystemWatcherEngine ()
 
- Public Functions inherited from QThread
void exit (int retcode=0)
 Tells the thread's event loop to exit with a return code. More...
 
bool isFinished () const
 Returns true if the thread is finished; otherwise returns false. More...
 
bool isRunning () const
 Returns true if the thread is running; otherwise returns false. More...
 
Priority priority () const
 Returns the priority for a running thread. More...
 
 QThread (QObject *parent=0)
 Constructs a new QThread to manage a new thread. More...
 
void setPriority (Priority priority)
 This function sets the priority for a running thread. More...
 
void setStackSize (uint stackSize)
 Sets the maximum stack size for the thread to stackSize. More...
 
uint stackSize () const
 Returns the maximum stack size for the thread (if set with setStackSize()); otherwise returns zero. More...
 
bool wait (unsigned long time=ULONG_MAX)
 Blocks the thread until either of these conditions is met: More...
 
 ~QThread ()
 Destroys the QThread. More...
 
- Public Functions inherited from QObject
bool blockSignals (bool b)
 If block is true, signals emitted by this object are blocked (i.e., emitting a signal will not invoke anything connected to it). More...
 
const QObjectListchildren () const
 Returns a list of child objects. More...
 
bool connect (const QObject *sender, const char *signal, const char *member, Qt::ConnectionType type=Qt::AutoConnection) const
 
bool disconnect (const char *signal=0, const QObject *receiver=0, const char *member=0)
 
bool disconnect (const QObject *receiver, const char *member=0)
 
void dumpObjectInfo ()
 Dumps information about signal connections, etc. More...
 
void dumpObjectTree ()
 Dumps a tree of children to the debug output. More...
 
QList< QByteArraydynamicPropertyNames () const
 Returns the names of all properties that were dynamically added to the object using setProperty(). More...
 
virtual bool event (QEvent *)
 This virtual function receives events to an object and should return true if the event e was recognized and processed. More...
 
virtual bool eventFilter (QObject *, QEvent *)
 Filters events if this object has been installed as an event filter for the watched object. More...
 
template<typename T >
findChild (const QString &aName=QString()) const
 Returns the child of this object that can be cast into type T and that is called name, or 0 if there is no such object. More...
 
template<typename T >
QList< T > findChildren (const QString &aName=QString()) const
 Returns all children of this object with the given name that can be cast to type T, or an empty list if there are no such objects. More...
 
template<typename T >
QList< T > findChildren (const QRegExp &re) const
 
bool inherits (const char *classname) const
 Returns true if this object is an instance of a class that inherits className or a QObject subclass that inherits className; otherwise returns false. More...
 
void installEventFilter (QObject *)
 Installs an event filter filterObj on this object. More...
 
bool isWidgetType () const
 Returns true if the object is a widget; otherwise returns false. More...
 
void killTimer (int id)
 Kills the timer with timer identifier, id. More...
 
virtual const QMetaObjectmetaObject () const
 Returns a pointer to the meta-object of this object. More...
 
void moveToThread (QThread *thread)
 Changes the thread affinity for this object and its children. More...
 
QString objectName () const
 
QObjectparent () const
 Returns a pointer to the parent object. More...
 
QVariant property (const char *name) const
 Returns the value of the object's name property. More...
 
Q_INVOKABLE QObject (QObject *parent=0)
 Constructs an object with parent object parent. More...
 
void removeEventFilter (QObject *)
 Removes an event filter object obj from this object. More...
 
void setObjectName (const QString &name)
 
void setParent (QObject *)
 Makes the object a child of parent. More...
 
bool setProperty (const char *name, const QVariant &value)
 Sets the value of the object's name property to value. More...
 
void setUserData (uint id, QObjectUserData *data)
 
bool signalsBlocked () const
 Returns true if signals are blocked; otherwise returns false. More...
 
int startTimer (int interval)
 Starts a timer and returns a timer identifier, or returns zero if it could not start a timer. More...
 
QThreadthread () const
 Returns the thread in which the object lives. More...
 
QObjectUserDatauserData (uint id) const
 
virtual ~QObject ()
 Destroys the object, deleting all its child objects. More...
 

Properties

QList< QWindowsFileSystemWatcherEngineThread * > threads
 

Additional Inherited Members

- Public Types inherited from QThread
enum  Priority {
  IdlePriority, LowestPriority, LowPriority, NormalPriority,
  HighPriority, HighestPriority, TimeCriticalPriority, InheritPriority
}
 This enum type indicates how the operating system should schedule newly created threads. More...
 
- Public Slots inherited from QThread
void quit ()
 Tells the thread's event loop to exit with return code 0 (success). More...
 
void start (Priority=InheritPriority)
 Begins execution of the thread by calling run(). More...
 
void terminate ()
 Terminates the execution of the thread. More...
 
- Public Slots inherited from QObject
void deleteLater ()
 Schedules this object for deletion. More...
 
- Signals inherited from QFileSystemWatcherEngine
void directoryChanged (const QString &path, bool removed)
 
void fileChanged (const QString &path, bool removed)
 
- Signals inherited from QThread
void finished ()
 This signal is emitted when the thread has finished executing. More...
 
void started ()
 This signal is emitted when the thread starts executing. More...
 
void terminated ()
 This signal is emitted when the thread is terminated. More...
 
- Signals inherited from QObject
void destroyed (QObject *=0)
 This signal is emitted immediately before the object obj is destroyed, and can not be blocked. More...
 
- Static Public Functions inherited from QThread
static QThreadcurrentThread ()
 Returns a pointer to a QThread which manages the currently executing thread. More...
 
static Qt::HANDLE currentThreadId ()
 Returns the thread handle of the currently executing thread. More...
 
static int idealThreadCount ()
 Returns the ideal number of threads that can be run on the system. More...
 
static void yieldCurrentThread ()
 Yields execution of the current thread to another runnable thread, if any. More...
 
- Static Public Functions inherited from QObject
static bool connect (const QObject *sender, const char *signal, const QObject *receiver, const char *member, Qt::ConnectionType=Qt::AutoConnection)
 Creates a connection of the given type from the signal in the sender object to the method in the receiver object. More...
 
static bool connect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method, Qt::ConnectionType type=Qt::AutoConnection)
 
static bool disconnect (const QObject *sender, const char *signal, const QObject *receiver, const char *member)
 Disconnects signal in object sender from method in object receiver. More...
 
static bool disconnect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &member)
 
static uint registerUserData ()
 
static QString tr (const char *sourceText, const char *comment=0, int n=-1)
 
static QString trUtf8 (const char *sourceText, const char *comment=0, int n=-1)
 
- Static Public Variables inherited from QObject
static const QMetaObject staticMetaObject
 This variable stores the meta-object for the class. More...
 
- Protected Functions inherited from QFileSystemWatcherEngine
 QFileSystemWatcherEngine (bool move=true)
 
- Protected Functions inherited from QThread
int exec ()
 Enters the event loop and waits until exit() is called, returning the value that was passed to exit(). More...
 
 QThread (QThreadPrivate &dd, QObject *parent=0)
 
virtual void run ()
 The starting point for the thread. More...
 
- Protected Functions inherited from QObject
virtual void childEvent (QChildEvent *)
 This event handler can be reimplemented in a subclass to receive child events. More...
 
virtual void connectNotify (const char *signal)
 This virtual function is called when something has been connected to signal in this object. More...
 
virtual void customEvent (QEvent *)
 This event handler can be reimplemented in a subclass to receive custom events. More...
 
virtual void disconnectNotify (const char *signal)
 This virtual function is called when something has been disconnected from signal in this object. More...
 
 QObject (QObjectPrivate &dd, QObject *parent=0)
 
int receivers (const char *signal) const
 Returns the number of receivers connected to the signal. More...
 
QObjectsender () const
 Returns a pointer to the object that sent the signal, if called in a slot activated by a signal; otherwise it returns 0. More...
 
int senderSignalIndex () const
 
virtual void timerEvent (QTimerEvent *)
 This event handler can be reimplemented in a subclass to receive timer events for the object. More...
 
- Static Protected Functions inherited from QThread
static void msleep (unsigned long)
 Forces the current thread to sleep for msecs milliseconds. More...
 
static void setTerminationEnabled (bool enabled=true)
 Enables or disables termination of the current thread based on the enabled parameter. More...
 
static void sleep (unsigned long)
 Forces the current thread to sleep for secs seconds. More...
 
static void usleep (unsigned long)
 Forces the current thread to sleep for usecs microseconds. More...
 
- Protected Variables inherited from QObject
QScopedPointer< QObjectDatad_ptr
 
- Static Protected Variables inherited from QObject
static const QMetaObject staticQtMetaObject
 

Detailed Description

Definition at line 77 of file qfilesystemwatcher_win_p.h.

Constructors and Destructors

◆ QWindowsFileSystemWatcherEngine()

QWindowsFileSystemWatcherEngine::QWindowsFileSystemWatcherEngine ( )

Definition at line 62 of file qfilesystemwatcher_win.cpp.

64 {
65 }
QFileSystemWatcherEngine(bool move=true)

◆ ~QWindowsFileSystemWatcherEngine()

QWindowsFileSystemWatcherEngine::~QWindowsFileSystemWatcherEngine ( )

Definition at line 67 of file qfilesystemwatcher_win.cpp.

68 {
69  if (threads.isEmpty())
70  return;
71 
73  thread->stop();
74  thread->wait();
75  delete thread;
76  }
77 }
QList< QWindowsFileSystemWatcherEngineThread * > threads
bool isEmpty() const
Returns true if the list contains no items; otherwise returns false.
Definition: qlist.h:152
bool wait(unsigned long time=ULONG_MAX)
Blocks the thread until either of these conditions is met:
QThread * thread() const
Returns the thread in which the object lives.
Definition: qobject.cpp:1419

Functions

◆ addPaths()

QStringList QWindowsFileSystemWatcherEngine::addPaths ( const QStringList paths,
QStringList files,
QStringList directories 
)
virtual

Implements QFileSystemWatcherEngine.

Definition at line 79 of file qfilesystemwatcher_win.cpp.

82 {
83  // qDebug()<<"Adding"<<paths.count()<<"to existing"<<(files->count() + directories->count())<<"watchers";
84  QStringList p = paths;
85  QMutableListIterator<QString> it(p);
86  while (it.hasNext()) {
87  QString path = it.next();
88  QString normalPath = path;
89  if ((normalPath.endsWith(QLatin1Char('/')) && !normalPath.endsWith(QLatin1String(":/")))
90  || (normalPath.endsWith(QLatin1Char('\\')) && !normalPath.endsWith(QLatin1String(":\\")))
91 #ifdef Q_OS_WINCE
92  && normalPath.size() > 1)
93 #else
94  )
95 #endif
96  normalPath.chop(1);
97  QFileInfo fileInfo(normalPath.toLower());
98  if (!fileInfo.exists())
99  continue;
100 
101  bool isDir = fileInfo.isDir();
102  if (isDir) {
103  if (directories->contains(path))
104  continue;
105  } else {
106  if (files->contains(path))
107  continue;
108  }
109 
110  // qDebug()<<"Looking for a thread/handle for"<<normalPath;
111 
112  const QString absolutePath = isDir ? fileInfo.absoluteFilePath() : fileInfo.absolutePath();
113  const uint flags = isDir
114  ? (FILE_NOTIFY_CHANGE_DIR_NAME
115  | FILE_NOTIFY_CHANGE_FILE_NAME)
116  : (FILE_NOTIFY_CHANGE_DIR_NAME
117  | FILE_NOTIFY_CHANGE_FILE_NAME
118  | FILE_NOTIFY_CHANGE_ATTRIBUTES
119  | FILE_NOTIFY_CHANGE_SIZE
120  | FILE_NOTIFY_CHANGE_LAST_WRITE
121  | FILE_NOTIFY_CHANGE_SECURITY);
122 
124  pathInfo.absolutePath = absolutePath;
125  pathInfo.isDir = isDir;
126  pathInfo.path = path;
127  pathInfo = fileInfo;
128 
129  // Look for a thread
133  end = threads.constEnd();
134  for(jt = threads.constBegin(); jt != end; ++jt) {
135  thread = *jt;
136  QMutexLocker locker(&(thread->mutex));
137 
138  handle = thread->handleForDir.value(absolutePath);
139  if (handle.handle != INVALID_HANDLE_VALUE && handle.flags == flags) {
140  // found a thread now insert...
141  // qDebug()<<" Found a thread"<<thread;
142 
144  = thread->pathInfoForHandle[handle.handle];
145  if (!h.contains(fileInfo.absoluteFilePath())) {
146  thread->pathInfoForHandle[handle.handle].insert(fileInfo.absoluteFilePath(), pathInfo);
147  if (isDir)
148  directories->append(path);
149  else
150  files->append(path);
151  }
152  it.remove();
153  thread->wakeup();
154  break;
155  }
156  }
157 
158  // no thread found, first create a handle
159  if (handle.handle == INVALID_HANDLE_VALUE || handle.flags != flags) {
160  // qDebug()<<" No thread found";
161  // Volume and folder paths need a trailing slash for proper notification
162  // (e.g. "c:" -> "c:/").
163  const QString effectiveAbsolutePath =
164  isDir ? (absolutePath + QLatin1Char('/')) : absolutePath;
165 
166  handle.handle = FindFirstChangeNotification((wchar_t*) QDir::toNativeSeparators(effectiveAbsolutePath).utf16(), false, flags);
167  handle.flags = flags;
168  if (handle.handle == INVALID_HANDLE_VALUE)
169  continue;
170 
171  // now look for a thread to insert
172  bool found = false;
174  QMutexLocker(&(thread->mutex));
175  if (thread->handles.count() < MAXIMUM_WAIT_OBJECTS) {
176  // qDebug() << " Added handle" << handle.handle << "for" << absolutePath << "to watch" << fileInfo.absoluteFilePath();
177  // qDebug()<< " to existing thread"<<thread;
178  thread->handles.append(handle.handle);
179  thread->handleForDir.insert(absolutePath, handle);
180 
181  thread->pathInfoForHandle[handle.handle].insert(fileInfo.absoluteFilePath(), pathInfo);
182  if (isDir)
183  directories->append(path);
184  else
185  files->append(path);
186 
187  it.remove();
188  found = true;
189  thread->wakeup();
190  break;
191  }
192  }
193  if (!found) {
195  //qDebug()<<" ###Creating new thread"<<thread<<"("<<(threads.count()+1)<<"threads)";
196  thread->handles.append(handle.handle);
197  thread->handleForDir.insert(absolutePath, handle);
198 
199  thread->pathInfoForHandle[handle.handle].insert(fileInfo.absoluteFilePath(), pathInfo);
200  if (isDir)
201  directories->append(path);
202  else
203  files->append(path);
204 
205  connect(thread, SIGNAL(fileChanged(QString,bool)),
206  this, SIGNAL(fileChanged(QString,bool)));
207  connect(thread, SIGNAL(directoryChanged(QString,bool)),
208  this, SIGNAL(directoryChanged(QString,bool)));
209 
210  thread->msg = '@';
211  thread->start();
212  threads.append(thread);
213  it.remove();
214  }
215  }
216  }
217  return p;
218 }
QList< QWindowsFileSystemWatcherEngineThread * > threads
void fileChanged(const QString &path, bool removed)
#define it(className, varName)
int count(const T &t) const
Returns the number of occurrences of value in the vector.
Definition: qvector.h:742
void chop(int n)
Removes n characters from the end of the string.
Definition: qstring.cpp:4623
const_iterator constBegin() const
Returns a const STL-style iterator pointing to the first item in the list.
Definition: qlist.h:269
The QList::const_iterator class provides an STL-style const iterator for QList and QQueue...
Definition: qlist.h:228
QLatin1String(DBUS_INTERFACE_DBUS))) Q_GLOBAL_STATIC_WITH_ARGS(QString
The QString class provides a Unicode character string.
Definition: qstring.h:83
bool contains(const Key &key) const
Returns true if the hash contains an item with the key; otherwise returns false.
Definition: qhash.h:872
const T value(const Key &key) const
Returns the value associated with the key.
Definition: qhash.h:606
QHash< QString, QWindowsFileSystemWatcherEngine::Handle > handleForDir
iterator insert(const Key &key, const T &value)
Inserts a new item with the key and a value of value.
Definition: qhash.h:753
#define SIGNAL(a)
Definition: qobjectdefs.h:227
void append(const T &t)
Inserts value at the end of the list.
Definition: qlist.h:507
bool isDir() const
Returns true if this object points to a directory or to a symbolic link to a directory; otherwise ret...
Definition: qfileinfo.cpp:990
int size() const
Returns the number of characters in this string.
Definition: qstring.h:102
static bool connect(const QObject *sender, const char *signal, const QObject *receiver, const char *member, Qt::ConnectionType=Qt::AutoConnection)
Creates a connection of the given type from the signal in the sender object to the method in the rece...
Definition: qobject.cpp:2580
The QStringList class provides a list of strings.
Definition: qstringlist.h:66
void append(const T &t)
Inserts value at the end of the vector.
Definition: qvector.h:573
unsigned int uint
Definition: qglobal.h:996
QBool contains(const QString &str, Qt::CaseSensitivity cs=Qt::CaseSensitive) const
Returns true if the list contains the string str; otherwise returns false.
Definition: qstringlist.h:172
void directoryChanged(const QString &path, bool removed)
The QMutexLocker class is a convenience class that simplifies locking and unlocking mutexes...
Definition: qmutex.h:101
QHash< HANDLE, QHash< QString, QWindowsFileSystemWatcherEngine::PathInfo > > pathInfoForHandle
void start(Priority=InheritPriority)
Begins execution of the thread by calling run().
QString toLower() const Q_REQUIRED_RESULT
Returns a lowercase copy of the string.
Definition: qstring.cpp:5389
QThread * thread() const
Returns the thread in which the object lives.
Definition: qobject.cpp:1419
bool endsWith(const QString &s, Qt::CaseSensitivity cs=Qt::CaseSensitive) const
Returns true if the string ends with s; otherwise returns false.
Definition: qstring.cpp:3796
The QFileInfo class provides system-independent file information.
Definition: qfileinfo.h:60
static const KeyPair *const end
static QString toNativeSeparators(const QString &pathName)
Returns pathName with the &#39;/&#39; separators converted to separators that are appropriate for the underly...
Definition: qdir.cpp:812
The QLatin1Char class provides an 8-bit ASCII/Latin-1 character.
Definition: qchar.h:55
const_iterator constEnd() const
Returns a const STL-style iterator pointing to the imaginary item after the last item in the list...
Definition: qlist.h:272

◆ removePaths()

QStringList QWindowsFileSystemWatcherEngine::removePaths ( const QStringList paths,
QStringList files,
QStringList directories 
)
virtual

Implements QFileSystemWatcherEngine.

Definition at line 220 of file qfilesystemwatcher_win.cpp.

223 {
224  // qDebug()<<"removePaths"<<paths;
225  QStringList p = paths;
226  QMutableListIterator<QString> it(p);
227  while (it.hasNext()) {
228  QString path = it.next();
229  QString normalPath = path;
230  if (normalPath.endsWith(QLatin1Char('/')) || normalPath.endsWith(QLatin1Char('\\')))
231  normalPath.chop(1);
232  QFileInfo fileInfo(normalPath.toLower());
233  // qDebug()<<"removing"<<normalPath;
234  QString absolutePath = fileInfo.absoluteFilePath();
236  end = threads.end();
237  for(jt = threads.begin(); jt!= end; ++jt) {
239  if (*jt == 0)
240  continue;
241 
242  QMutexLocker locker(&(thread->mutex));
243 
244  QWindowsFileSystemWatcherEngine::Handle handle = thread->handleForDir.value(absolutePath);
245  if (handle.handle == INVALID_HANDLE_VALUE) {
246  // perhaps path is a file?
247  absolutePath = fileInfo.absolutePath();
248  handle = thread->handleForDir.value(absolutePath);
249  }
250  if (handle.handle != INVALID_HANDLE_VALUE) {
252  thread->pathInfoForHandle[handle.handle];
253  if (h.remove(fileInfo.absoluteFilePath())) {
254  // ###
255  files->removeAll(path);
256  directories->removeAll(path);
257 
258  if (h.isEmpty()) {
259  // qDebug() << "Closing handle" << handle.handle;
260  FindCloseChangeNotification(handle.handle); // This one might generate a notification
261 
262  int indexOfHandle = thread->handles.indexOf(handle.handle);
263  Q_ASSERT(indexOfHandle != -1);
264  thread->handles.remove(indexOfHandle);
265 
266  thread->handleForDir.remove(absolutePath);
267  // h is now invalid
268 
269  it.remove();
270 
271  if (thread->handleForDir.isEmpty()) {
272  // qDebug()<<"Stopping thread "<<thread;
273  locker.unlock();
274  thread->stop();
275  thread->wait();
276  locker.relock();
277  // We can't delete the thread until the mutex locker is
278  // out of scope
279  }
280  }
281  }
282  // Found the file, go to next one
283  break;
284  }
285  }
286  }
287 
288  // Remove all threads that we stopped
290  end = threads.end();
291  for(jt = threads.begin(); jt != end; ++jt) {
292  if (!(*jt)->isRunning()) {
293  delete *jt;
294  *jt = 0;
295  }
296  }
297 
298  threads.removeAll(0);
299  return p;
300 }
QList< QWindowsFileSystemWatcherEngineThread * > threads
int remove(const Key &key)
Removes all the items that have the key from the hash.
Definition: qhash.h:784
void remove(int i)
Removes the element at index position i.
Definition: qvector.h:374
#define it(className, varName)
void chop(int n)
Removes n characters from the end of the string.
Definition: qstring.cpp:4623
iterator begin()
Returns an STL-style iterator pointing to the first item in the list.
Definition: qlist.h:267
The QString class provides a Unicode character string.
Definition: qstring.h:83
#define Q_ASSERT(cond)
Definition: qglobal.h:1823
const T value(const Key &key) const
Returns the value associated with the key.
Definition: qhash.h:606
QHash< QString, QWindowsFileSystemWatcherEngine::Handle > handleForDir
iterator end()
Returns an STL-style iterator pointing to the imaginary item after the last item in the list...
Definition: qlist.h:270
The QStringList class provides a list of strings.
Definition: qstringlist.h:66
bool isEmpty() const
Returns true if the hash contains no items; otherwise returns false.
Definition: qhash.h:297
int indexOf(const T &t, int from=0) const
Returns the index position of the first occurrence of value in the vector, searching forward from ind...
Definition: qvector.h:698
The QList::iterator class provides an STL-style non-const iterator for QList and QQueue.
Definition: qlist.h:181
The QMutexLocker class is a convenience class that simplifies locking and unlocking mutexes...
Definition: qmutex.h:101
QHash< HANDLE, QHash< QString, QWindowsFileSystemWatcherEngine::PathInfo > > pathInfoForHandle
bool wait(unsigned long time=ULONG_MAX)
Blocks the thread until either of these conditions is met:
QString toLower() const Q_REQUIRED_RESULT
Returns a lowercase copy of the string.
Definition: qstring.cpp:5389
QThread * thread() const
Returns the thread in which the object lives.
Definition: qobject.cpp:1419
bool endsWith(const QString &s, Qt::CaseSensitivity cs=Qt::CaseSensitive) const
Returns true if the string ends with s; otherwise returns false.
Definition: qstring.cpp:3796
The QFileInfo class provides system-independent file information.
Definition: qfileinfo.h:60
static const KeyPair *const end
The QLatin1Char class provides an 8-bit ASCII/Latin-1 character.
Definition: qchar.h:55
int removeAll(const T &t)
Removes all occurrences of value in the list and returns the number of entries removed.
Definition: qlist.h:770

◆ stop()

void QWindowsFileSystemWatcherEngine::stop ( )
virtual

Implements QFileSystemWatcherEngine.

Definition at line 56 of file qfilesystemwatcher_win.cpp.

57 {
59  thread->stop();
60 }
QList< QWindowsFileSystemWatcherEngineThread * > threads
QThread * thread() const
Returns the thread in which the object lives.
Definition: qobject.cpp:1419

Properties

◆ threads

QList<QWindowsFileSystemWatcherEngineThread *> QWindowsFileSystemWatcherEngine::threads
private

The documentation for this class was generated from the following files: