Nebula
Loading...
Searching...
No Matches
linuxfilewatcher.h
Go to the documentation of this file.
1#pragma once
2//------------------------------------------------------------------------------
10#include "core/types.h"
11#include "core/refcounted.h"
12
13namespace IO
14{
15 struct EventHandlerData;
16 struct FileWatcherPlatform
17 {
18 bool recursive;
19 };
20
21class FileWatcherImpl
22{
23public:
24 static void CreateWatcher(EventHandlerData& data);
25 static void DestroyWatcher(EventHandlerData& data);
26 static void Update(EventHandlerData& data);
27};
28}
Definition win32filewatcher.h:26
static void CreateWatcher(EventHandlerData &data)
Definition linuxfilewatcher.cc:12
static void Update(EventHandlerData &data)
Definition linuxfilewatcher.cc:24
static void DestroyWatcher(EventHandlerData &data)
Definition linuxfilewatcher.cc:18
Instances of wrapped stream classes.
Definition orientation.cc:10
Definition filewatcher.h:63
bool recursive
Definition linuxfilewatcher.h:18