2017-10-15 13:40:11 +00:00
|
|
|
#ifndef QTMATERIALMENU_H
|
|
|
|
#define QTMATERIALMENU_H
|
|
|
|
|
2017-10-15 13:54:35 +00:00
|
|
|
#include <QtWidgets/QWidget>
|
|
|
|
|
|
|
|
class QtMaterialMenu : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit QtMaterialMenu(QWidget *parent = 0);
|
|
|
|
~QtMaterialMenu();
|
|
|
|
};
|
|
|
|
|
2017-10-15 13:40:11 +00:00
|
|
|
#endif // QTMATERIALMENU_H
|