lyx_mirror/src/Chktex.h
Lars Gullik Bjønnes 8283e978f8 ws cleanup
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3803 a592a061-630c-0410-9148-cb99ea01b6c8
2002-03-21 17:27:08 +00:00

58 lines
965 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