##// END OF EJS Templates
Adding metatype declarations in qml plugin for Qt5...
Adding metatype declarations in qml plugin for Qt5 Not sure why they are needed for Qt5. Definetly NOT needed for Qt4.

File last commit:

r2254:3e008d6a7c89
r2257:b97c592cff78
Show More
widget.h
19 lines | 232 B | text/x-c | CLexer
Marek Rosa
Added simple demoLauncher application
r2229 #ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
Tero Ahola
Demo launcher now works on OSX
r2237 #include <QDir>
Marek Rosa
Added simple demoLauncher application
r2229
class Widget : public QWidget
{
Q_OBJECT
public:
Widget(QWidget *parent = 0);
~Widget();
private:
Tero Ahola
Demo launcher now works on OSX
r2237 QDir m_appFolder;
Marek Rosa
Added simple demoLauncher application
r2229 };
#endif // WIDGET_H