]> git.lyx.org Git - lyx.git/blobdiff - src/support/path.h
* lyxfunctional.h: delete compare_memfun and helper classes
[lyx.git] / src / support / path.h
index e043e11035356702dcd656d7ad506657557e2635..2d1c43875b681edf814258c0283dec5752e08f56 100644 (file)
 #ifndef PATH_H
 #define PATH_H
 
-#include "support/std_string.h"
 #include <boost/utility.hpp>
 
+#include <string>
+
 namespace lyx {
 namespace support {
 
@@ -34,7 +35,7 @@ namespace support {
 class Path : boost::noncopyable {
 public:
        /// change to the given directory
-       explicit Path(string const & path);
+       explicit Path(std::string const & path);
 
        /// set cwd to the previous value if needed
        ~Path();
@@ -45,7 +46,7 @@ private:
        /// whether we are in the new cwd or not
        bool popped_;
        /// the previous cwd
-       string pushedDir_;
+       std::string pushedDir_;
 };
 
 // To avoid the wrong usage: