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.
25 lines
349 B
25 lines
349 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
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
%{APPNAME}Widget(%{APPNAME}Part *part);
|
|
~%{APPNAME}Widget();
|
|
|
|
private:
|
|
%{APPNAME}Part *m_part;
|
|
};
|
|
|
|
|
|
#endif
|