]> git.tdb.fi Git - libs/core.git/blob - source/fs/windows/filemonitor.cpp
Add FileMonitor stubs for Windows
[libs/core.git] / source / fs / windows / filemonitor.cpp
1 #include "filemonitor.h"
2 #include "filemonitor_platform.h"
3
4 using namespace std;
5
6 namespace Msp {
7 namespace FS {
8
9 void FileMonitor::platform_use_event_dispatcher()
10 { }
11
12 void FileMonitor::prepare_file(MonitoredFile &)
13 { }
14
15 void FileMonitor::cleanup_file(MonitoredFile &)
16 { }
17
18 void FileMonitor::tick()
19 { }
20
21
22 FileMonitor::Private::Private(FileMonitor &)
23 {
24         throw logic_error("not implemented");
25 }
26
27 } // namespace FS
28 } // namespace Msp