X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Ffs%2Fwindows%2Ffilemonitor.cpp;fp=source%2Ffs%2Fwindows%2Ffilemonitor.cpp;h=3ed65b188aeb0d043e46d9a1a609572eaa2de055;hb=7be37ad97a2fd3494cb5d56badb45997353ff709;hp=0000000000000000000000000000000000000000;hpb=ffab0509a65f6f32851e64d66a5f7eeb453ab29f;p=libs%2Fcore.git diff --git a/source/fs/windows/filemonitor.cpp b/source/fs/windows/filemonitor.cpp new file mode 100644 index 0000000..3ed65b1 --- /dev/null +++ b/source/fs/windows/filemonitor.cpp @@ -0,0 +1,28 @@ +#include "filemonitor.h" +#include "filemonitor_platform.h" + +using namespace std; + +namespace Msp { +namespace FS { + +void FileMonitor::platform_use_event_dispatcher() +{ } + +void FileMonitor::prepare_file(MonitoredFile &) +{ } + +void FileMonitor::cleanup_file(MonitoredFile &) +{ } + +void FileMonitor::tick() +{ } + + +FileMonitor::Private::Private(FileMonitor &) +{ + throw logic_error("not implemented"); +} + +} // namespace FS +} // namespace Msp