X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FChktex.h;h=fb0dc7277b8cbf267e793fe3c4ce02aeec4a2c93;hb=0da3d53269a49c66b24615d24e20e441dcf7c07e;hp=071927ec3ba691a0edb82173a4308185fb325b98;hpb=99d1627a471b92f403598d03dfc861ddc3c11be0;p=lyx.git diff --git a/src/Chktex.h b/src/Chktex.h index 071927ec3b..fb0dc7277b 100644 --- a/src/Chktex.h +++ b/src/Chktex.h @@ -1,26 +1,26 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file Chktex.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Asger Alstrup * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * This file is Copyright 1997 - * Asger Alstrup - * - * ====================================================== + * Full author contact details are available in file CREDITS. */ #ifndef CHKTEX_H #define CHKTEX_H -#include "LString.h" +#include + + +namespace lyx { class LyXLex; class TeXErrors; + /// class Chktex { public: @@ -29,8 +29,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. @@ -39,15 +39,15 @@ public: private: /// int scanLogFile(TeXErrors &); - /// - string cmd; - + std::string cmd; /// - string file; - + std::string file; /// - string path; + std::string path; }; + +} // namespace lyx + #endif