mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
44cd0fc9a1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7862 a592a061-630c-0410-9148-cb99ea01b6c8
51 lines
824 B
C++
51 lines
824 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
|
|
|
|
class LyXLex;
|
|
class TeXErrors;
|
|
|
|
#include <string>
|
|
|
|
|
|
///
|
|
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;
|
|
};
|
|
|
|
#endif
|