diff options
Diffstat (limited to 'libk9copy/k9tools.h')
-rw-r--r-- | libk9copy/k9tools.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/libk9copy/k9tools.h b/libk9copy/k9tools.h new file mode 100644 index 0000000..9548511 --- /dev/null +++ b/libk9copy/k9tools.h @@ -0,0 +1,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 <qstring.h> + +/** + @author Jean-Michel PETIT <k9copy@free.fr> +*/ +class k9Tools{ +private: + k9Tools() {}; + ~k9Tools(){}; +public: + static bool checkProgram(QString _progName); + static void clearOutput(QString name); +}; + +#endif |