blob: bf87cb041ce80448f72aced60a1dc3f3f45737b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef MAIN_H
#define MAIN_H
class Win
: public TDEMainWindow
{
TQ_OBJECT
KParts::Part* p;
public:
Win();
public slots:
void pythonExited();
void forked();
};
#endif
|