#ifndef __EV_DIR_MON_H__ #define __EV_DIR_MON_H__ #include #include #include #include #include "libfswatch/c++/path_utils.hpp" #include "libfswatch/c++/event.hpp" #include "libfswatch/c++/monitor.hpp" #include "libfswatch/c++/monitor_factory.hpp" #include "libfswatch/c++/libfswatch_exception.hpp" #include "inc/spdlog/spdlog.h" using namespace std; using namespace fsw; int CreateDirMon(monitor **m, string path, string ext, vector &&events, FSW_EVENT_CALLBACK cb, void *pUserData); int CloseDirMon(monitor*m); #endif