X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=common%2Ffilesystem_monitor.h;h=c44662d292e6bda3ec0822ce6a73075fe97a5211;hb=5fb7f47b0a34ae5bc89207bf3172d15e06c86430;hp=4e90bb4a0c0625fa149969704dd15bbc8f5ac605;hpb=f8f6a249b84f66e057c1a954eaea05fc5fbfc331;p=casparcg diff --git a/common/filesystem_monitor.h b/common/filesystem_monitor.h index 4e90bb4a0..c44662d29 100644 --- a/common/filesystem_monitor.h +++ b/common/filesystem_monitor.h @@ -59,7 +59,7 @@ public: * * @param file The file to reemmit. */ - virtual void reemmit(const boost::filesystem::wpath& file) = 0; + virtual void reemmit(const boost::filesystem::path& file) = 0; }; /** @@ -83,7 +83,7 @@ ENUM_ENABLE_BITWISE(filesystem_event); * @param event Can be CREATED, REMOVED or MODIFIED. * @param file The file affected. */ -typedef std::function filesystem_monitor_handler; +typedef std::function filesystem_monitor_handler; /** * Called when the initially available files has been found. @@ -92,7 +92,7 @@ typedef std::function& initial_files)> initial_files_handler; +typedef std::function& initial_files)> initial_files_handler; /** * Factory for creating filesystem monitors. @@ -120,12 +120,12 @@ public: * @return The filesystem monitor handle. */ virtual filesystem_monitor::ptr create( - const boost::filesystem::wpath& folder_to_watch, + const boost::filesystem::path& folder_to_watch, filesystem_event events_of_interest_mask, bool report_already_existing, const filesystem_monitor_handler& handler, const initial_files_handler& initial_files_handler = - [] (const std::set&) { }) = 0; + [] (const std::set&) { }) = 0; }; -} \ No newline at end of file +}