qt-material-widgets/components/drawer.h

20 lines
258 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();
private:
Q_DISABLE_COPY(Drawer)
//Q_DECLARE_PRIVATE(Drawer)
};
#endif // DRAWER_H