Index: sources/device/DeviceController.h =================================================================== diff -u -r80b5e8f1ebb90c03c37d90d90cd2da3bd95d6803 -r61f87c52ccba9ce140fd8039915e025b6c790575 --- sources/device/DeviceController.h (.../DeviceController.h) (revision 80b5e8f1ebb90c03c37d90d90cd2da3bd95d6803) +++ sources/device/DeviceController.h (.../DeviceController.h) (revision 61f87c52ccba9ce140fd8039915e025b6c790575) @@ -133,8 +133,8 @@ void onUSBDriveUmount(); void onWatchFileChanged(const QString &vFile); + void onWatchDirectoryChanged(const QString &vDirectory); - void onEventThreadChange (); /*! @@ -168,6 +168,7 @@ DeviceError::Scripts_Error_Enum checkScript(QString &vScript, const QString &vShellScript); bool addWatch(const QString &vFilePath); + bool addDirectoryWatch(const QString &vDirectoryPath); void checkConfugurationMountReady(); @@ -234,6 +235,7 @@ void didActionReceive( const DeviceRootSSHAccessResponseData &vRootSSHAccess); void didWatchFileChange(const QString &vFile); + void didWatchDirectoryChange(const QString &vDirectory); /*! * \brief didEventThreadChange @@ -266,5 +268,6 @@ void usbSpaceCheck(); SAFE_CALL_EX(doAddWatch, const QString &) + SAFE_CALL_EX(doAddDirectoryWatch, const QString &) }; }