]> git.lyx.org Git - lyx.git/blobdiff - src/Chktex.h
The std::string mammoth path.
[lyx.git] / src / Chktex.h
index aa8311501dfdb1ac3f602cea8822c9bca0ef8641..8af93a465c6d656a41d99b4a0c11fc4cb1da7a7d 100644 (file)
 #ifndef CHKTEX_H
 #define CHKTEX_H
 
-#include "support/std_string.h"
-
 class LyXLex;
 class TeXErrors;
 
+#include <string>
+
+
 ///
 class Chktex {
 public:
@@ -25,8 +26,8 @@ public:
          @param file name of the (temporary) latex file.
          @param path name of the files original path.
        */
-       Chktex(string const & cmd, string const & file,
-              string const & path);
+       Chktex(std::string const & cmd, std::string const & file,
+              std::string const & path);
 
        /** Runs chktex.
            @return -1 if fail, number of messages otherwise.
@@ -37,13 +38,13 @@ private:
        int scanLogFile(TeXErrors &);
 
        ///
-       string cmd;
+       std::string cmd;
 
        ///
-       string file;
+       std::string file;
 
        ///
-       string path;
+       std::string path;
 };
 
 #endif