blob: 7d9672be3c31afe617028d0f4282bba7cf62f9dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//
// 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
|