You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdevelop/languages/cpp/app_templates/kdevpart2/kdevpart_widget.h

25 lines
350 B

%{H_TEMPLATE}
#ifndef %{APPNAMEUC}_WIDGET_H
#define %{APPNAMEUC}_WIDGET_H
#include <tqwidget.h>
#include <tqstring.h>
class KDevProject;
class %{APPNAME}Part;
class %{APPNAME}Widget: public TQWidget
{
TQ_OBJECT
public:
%{APPNAME}Widget(%{APPNAME}Part *part);
~%{APPNAME}Widget();
private:
%{APPNAME}Part *m_part;
};
#endif