Cogs.Core
FileSystemWatcher.MacOS.cpp
1#include "FileSystemWatcher.h"
2
3Cogs::FileSystemWatcher::FileSystemWatcher() {
4}
5
6Cogs::FileSystemWatcher::~FileSystemWatcher() {
7}
8
9bool Cogs::FileSystemWatcher::watchFile(const StringView& /*path*/, const CallbackFn& /*callback*/) {
10 (void)storage;
11 return false;
12}
13
14bool Cogs::FileSystemWatcher::unwatchFile(const StringView& /*path*/) {
15 return false;
16}