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/kdedcop/app.h

38 lines
523 B

%{H_TEMPLATE}
#ifndef _%{APPNAMEUC}_H_
#define _%{APPNAMEUC}_H_
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <tdemainwindow.h>
#include "mainclass.h"
/**
* @short Application Main Window
* @author %{AUTHOR} <%{EMAIL}>
* @version 0.1
*/
class %{APPNAME} : public TDEMainWindow
{
TQ_OBJECT
public:
/**
* Default Constructor
*/
%{APPNAME}();
/**
* Default Destructor
*/
virtual ~%{APPNAME}();
private:
MainClass *m_mainClass;
};
#endif // _%{APPNAMEUC}_H_