blob: 098c10d542fda5777277a53f2bfd5ebffea1c2a4 (
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 KMainWindow
{
Q_OBJECT
KParts::Part* p;
public:
Win();
public slots:
void pythonExited();
void forked();
};
#endif
|