blob: 6eaeb813c914c382fe35345d5520b2faef79cd2b (
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
|
//
// C++ Interface: k9redirect
//
// Description:
//
//
// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef K9REDIRECT_H
#define K9REDIRECT_H
#include "k9common.h"
#include <tqfile.h>
/**
@author Jean-Michel PETIT <k9copy@free.fr>
*/
class k9Redirect{
public:
k9Redirect();
~k9Redirect();
void execute();
};
#endif
|