mirror of
https://git.code.sf.net/p/newrpl/sources
synced 2024-11-16 19:51:25 +01:00
15 lines
234 B
C++
15 lines
234 B
C++
#ifndef MENUWIDGET_H
|
|
#define MENUWIDGET_H
|
|
|
|
#include <QObject>
|
|
#include <QWidget>
|
|
#include <QQuickWidget>
|
|
|
|
class menuWidget:public QQuickWidget
|
|
{
|
|
public:
|
|
menuWidget();
|
|
menuWidget(QWidget * parent);
|
|
};
|
|
|
|
#endif // MENUWIDGET_H
|