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 { Q_OBJECT TQ_OBJECT public: PascalProjectWidget(PascalProjectPart *part); ~PascalProjectWidget(); }; #endif