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