Daniele Bartolini 6 лет назад
Родитель
Сommit
2e4b84e954
1 измененных файлов с 5 добавлено и 2 удалено
  1. 5 2
      src/core/filesystem/file_monitor.h

+ 5 - 2
src/core/filesystem/file_monitor.h

@@ -37,13 +37,16 @@ struct FileMonitor
 {
 	FileMonitorImpl* _impl;
 
+	///
 	FileMonitor(Allocator& a);
+
+	///
 	~FileMonitor();
 
-	// Starts monitoring the @a path.
+	/// Starts monitoring the @a path.
 	void start(const char* path, bool recursive, FileMonitorFunction fmf, void* user_data);
 
-	// Stops monitoring.
+	/// Stops monitoring.
 	void stop();
 };