forked from qt-creator/qt-creator
Cannot put a source file template into a resource in a source directory as Visual Studio will grab and build it.
15 lines
227 B
C++
15 lines
227 B
C++
#ifndef @WIDGET_INCLUDE_GUARD@
|
|
#define @WIDGET_INCLUDE_GUARD@
|
|
|
|
#include <QtGui/@WIDGET_BASE_CLASS@>
|
|
|
|
class @WIDGET_CLASS@ : public @WIDGET_BASE_CLASS@
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
@WIDGET_CLASS@(QWidget *parent = 0);
|
|
};
|
|
|
|
#endif
|