You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
468 B
30 lines
468 B
//
|
|
// C++ Interface: k9tools
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2006
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
#ifndef K9TOOLS_H
|
|
#define K9TOOLS_H
|
|
|
|
#include <tqstring.h>
|
|
|
|
/**
|
|
@author Jean-Michel PETIT <k9copy@free.fr>
|
|
*/
|
|
class k9Tools{
|
|
private:
|
|
k9Tools() {};
|
|
~k9Tools(){};
|
|
public:
|
|
static bool checkProgram(TQString _progName);
|
|
static void clearOutput(TQString name);
|
|
};
|
|
|
|
#endif
|