mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
83acbbd523
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2072 a592a061-630c-0410-9148-cb99ea01b6c8
58 lines
970 B
C++
58 lines
970 B
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2001 The LyX Team.
|
|
*
|
|
* This file is Copyright 1997
|
|
* Asger Alstrup
|
|
*
|
|
* ======================================================
|
|
*/
|
|
|
|
#ifndef CHKTEX_H
|
|
#define CHKTEX_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "LString.h"
|
|
|
|
class LyXLex;
|
|
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(string const & cmd, string const & file,
|
|
string const & path);
|
|
|
|
/** Runs chktex.
|
|
@return -1 if fail, number of messages otherwise.
|
|
*/
|
|
int run(TeXErrors &);
|
|
private:
|
|
///
|
|
int scanLogFile(TeXErrors &);
|
|
|
|
///
|
|
string cmd;
|
|
|
|
///
|
|
string file;
|
|
|
|
///
|
|
string path;
|
|
};
|
|
|
|
#endif
|