mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
39e79d8602
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18033 a592a061-630c-0410-9148-cb99ea01b6c8
54 lines
859 B
C++
54 lines
859 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file Chktex.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Asger Alstrup
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef CHKTEX_H
|
|
#define CHKTEX_H
|
|
|
|
#include <string>
|
|
|
|
|
|
namespace lyx {
|
|
|
|
class Lexer;
|
|
class TeXErrors;
|
|
|
|
|
|
///
|
|
class Chktex {
|
|
public:
|
|
/**
|
|
@param cmd the chktex command.
|
|
@param file name of the (temporary) latex file.
|
|
@param path name of the files original path.
|
|
*/
|
|
Chktex(std::string const & cmd, std::string const & file,
|
|
std::string const & path);
|
|
|
|
/** Runs chktex.
|
|
@return -1 if fail, number of messages otherwise.
|
|
*/
|
|
int run(TeXErrors &);
|
|
private:
|
|
///
|
|
int scanLogFile(TeXErrors &);
|
|
///
|
|
std::string cmd;
|
|
///
|
|
std::string file;
|
|
///
|
|
std::string path;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|