FileWatcher.pkg 243 B

123456789
  1. $#include "FileWatcher.h"
  2. class FileWatcher : public Object
  3. {
  4. bool StartWatching(const String& pathName, bool watchSubDirs);
  5. void StopWatching();
  6. void AddChange(const String fileName);
  7. const String& GetPath() const;
  8. };