]> git.lyx.org Git - features.git/blobdiff - src/support/path.h
make doc++ able to generate the source documentation for lyx
[features.git] / src / support / path.h
index 2a2dc0b2161c7695420f4de61de0d920df443181..d2480670c3b5eebe6ffe93e83cc5c35dcdecffd0 100644 (file)
@@ -3,15 +3,16 @@
 #define PATH_H
 
 #include "LString.h"
-#include "support/filetools.h"
+#include "filetools.h"
 #include "lyxlib.h"
+#include "utility.hpp"
 
 #ifdef __GNUG__
 #pragma interface
 #endif
 
 ///
-class Path {
+class Path : public noncopyable {
 public:
        ///
        explicit
@@ -50,6 +51,7 @@ private:
 // Path("/tmp");   // wrong
 // Path p("/tmp");  // right
 // we add this macro:
+///
 #define Path(x) unnamed_Path;
 // Tip gotten from Bobby Schmidt's column in C/C++ Users Journal