blob: 1d94652ae0c601491c848e3c4208152603bdb972 (
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
|
#ifndef __PASCALPROJECT_WIDGET_H__
#define __PASCALPROJECT_WIDGET_H__
#include <tqwidget.h>
#include <tqstring.h>
class KDevProject;
class PascalProjectPart;
class PascalProjectWidget : public TQWidget
{
TQ_OBJECT
public:
PascalProjectWidget(PascalProjectPart *part);
~PascalProjectWidget();
};
#endif
|