qt-material-widgets/components/drawer.h

22 lines
282 B
C
Raw Normal View History

2016-06-17 11:45:27 +00:00
#ifndef DRAWER_H
#define DRAWER_H
#include <QWidget>
class Drawer : public QWidget
{
Q_OBJECT
public:
explicit Drawer(QWidget *parent = 0);
~Drawer();
Drawer *const q_ptr;
2016-06-17 11:45:27 +00:00
private:
Q_DISABLE_COPY(Drawer)
Q_DECLARE_PRIVATE(Drawer)
2016-06-17 11:45:27 +00:00
};
#endif // DRAWER_H