diff options
Diffstat (limited to 'src/3rdParty/efsw/Watcher.cpp')
| -rwxr-xr-x | src/3rdParty/efsw/Watcher.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/3rdParty/efsw/Watcher.cpp b/src/3rdParty/efsw/Watcher.cpp new file mode 100755 index 0000000..913ae3c --- /dev/null +++ b/src/3rdParty/efsw/Watcher.cpp | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | #include <efsw/Watcher.hpp> | ||
| 2 | |||
| 3 | namespace efsw { | ||
| 4 | |||
| 5 | Watcher::Watcher() : ID( 0 ), Directory( "" ), Listener( NULL ), Recursive( false ) {} | ||
| 6 | |||
| 7 | Watcher::Watcher( WatchID id, std::string directory, FileWatchListener* listener, bool recursive ) : | ||
| 8 | ID( id ), Directory( directory ), Listener( listener ), Recursive( recursive ) {} | ||
| 9 | |||
| 10 | } // namespace efsw | ||
