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