aboutsummaryrefslogtreecommitdiff
path: root/src/3rdParty/efsw/Watcher.cpp
blob: 913ae3c431af0075ad01f1295421c78175274516 (plain)
1
2
3
4
5
6
7
8
9
10
#include <efsw/Watcher.hpp>

namespace efsw {

Watcher::Watcher() : ID( 0 ), Directory( "" ), Listener( NULL ), Recursive( false ) {}

Watcher::Watcher( WatchID id, std::string directory, FileWatchListener* listener, bool recursive ) :
	ID( id ), Directory( directory ), Listener( listener ), Recursive( recursive ) {}

} // namespace efsw