lyx_mirror/src/Chktex.h
Lars Gullik Bjønnes a040c0bc6f white-space changes, removed definitions.h several enum changes because of this, new file undo.C rewritten some in chset.C
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@314 a592a061-630c-0410-9148-cb99ea01b6c8
1999-11-15 12:01:38 +00:00

57 lines
952 B
C++

// -*- C++ -*-
/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 1995 Matthias Ettrich
* Copyright 1995-1999 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:
/**
cmd = the chktex command, file = name of the (temporary) latex file,
path = name of the files original path.
*/
Chktex(string const & cmd, string const & file,
string const & path);
/** Runs chktex.
Returns -1 if fail, number of messages otherwise.
*/
int run(TeXErrors &);
private:
///
int scanLogFile(TeXErrors &);
///
string cmd;
///
string file;
///
string path;
};
#endif