]> git.tdb.fi Git - libs/core.git/blobdiff - source/fs/windows/filemonitor.cpp
Add FileMonitor stubs for Windows
[libs/core.git] / source / fs / windows / filemonitor.cpp
diff --git a/source/fs/windows/filemonitor.cpp b/source/fs/windows/filemonitor.cpp
new file mode 100644 (file)
index 0000000..3ed65b1
--- /dev/null
@@ -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