Menu => md namespace.
This commit is contained in:
parent
792f3cfa24
commit
d11d642cfe
|
@ -1,11 +1,17 @@
|
|||
#include "qtmaterialmenu.h"
|
||||
#include "qtmaterialmenu_p.h"
|
||||
|
||||
QtMaterialMenu::QtMaterialMenu(QWidget *parent)
|
||||
namespace md
|
||||
{
|
||||
|
||||
Menu::Menu(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
{
|
||||
}
|
||||
|
||||
QtMaterialMenu::~QtMaterialMenu()
|
||||
Menu::~Menu()
|
||||
{
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -3,13 +3,16 @@
|
|||
|
||||
#include <QtWidgets/QWidget>
|
||||
|
||||
class QtMaterialMenu : public QWidget
|
||||
namespace md
|
||||
{
|
||||
class Menu : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit QtMaterialMenu(QWidget *parent = 0);
|
||||
~QtMaterialMenu();
|
||||
explicit Menu(QWidget *parent = 0);
|
||||
~Menu();
|
||||
};
|
||||
}
|
||||
|
||||
#endif // QTMATERIALMENU_H
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
|
||||
|
||||
namespace md
|
||||
{
|
||||
|
||||
}
|
|
@ -1,4 +1,7 @@
|
|||
#ifndef QTMATERIALMENU_INTERNAL_H
|
||||
#define QTMATERIALMENU_INTERNAL_H
|
||||
namespace md
|
||||
{
|
||||
|
||||
}
|
||||
#endif // QTMATERIALMENU_INTERNAL_H
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
#ifndef QTMATERIALMENU_P_H
|
||||
#define QTMATERIALMENU_P_H
|
||||
namespace md
|
||||
{
|
||||
|
||||
}
|
||||
#endif // QTMATERIALMENU_P_H
|
||||
|
|
Loading…
Reference in New Issue