Bläddra i källkod

core: fix missing docs

Daniele Bartolini 6 år sedan
förälder
incheckning
2e4b84e954
1 ändrade filer med 5 tillägg och 2 borttagningar
  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;
 	FileMonitorImpl* _impl;
 
 
+	///
 	FileMonitor(Allocator& a);
 	FileMonitor(Allocator& a);
+
+	///
 	~FileMonitor();
 	~FileMonitor();
 
 
-	// Starts monitoring the @a path.
+	/// Starts monitoring the @a path.
 	void start(const char* path, bool recursive, FileMonitorFunction fmf, void* user_data);
 	void start(const char* path, bool recursive, FileMonitorFunction fmf, void* user_data);
 
 
-	// Stops monitoring.
+	/// Stops monitoring.
 	void stop();
 	void stop();
 };
 };