20 lines
258 B
C
20 lines
258 B
C
|
#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
|