X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FChktex.h;h=34826bbcea65668e2563b796980106b645b32c92;hb=28be7d552f62cc02fa86d7f79201d089bfb2d7b5;hp=a73478974f52c9126f1d7fa88db32bfb5829ffac;hpb=0be0fcfd5907d448cd51addf83ed7032719a0692;p=lyx.git diff --git a/src/Chktex.h b/src/Chktex.h index a73478974f..34826bbcea 100644 --- a/src/Chktex.h +++ b/src/Chktex.h @@ -12,11 +12,14 @@ #ifndef CHKTEX_H #define CHKTEX_H -#include "LString.h" +#include + + +namespace lyx { -class LyXLex; class TeXErrors; + /// class Chktex { public: @@ -25,8 +28,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. @@ -35,15 +38,15 @@ public: private: /// int scanLogFile(TeXErrors &); - /// - string cmd; - + std::string cmd; /// - string file; - + std::string file; /// - string path; + std::string path; }; + +} // namespace lyx + #endif