qt-material-widgets/components/drawer_p.h

24 lines
406 B
C
Raw Normal View History

#ifndef DRAWER_P_H
#define DRAWER_P_H
2016-06-24 04:50:24 +00:00
#include <QObject>
class Drawer;
2016-06-24 04:50:24 +00:00
class DrawerStateMachine;
class DrawerPrivate
{
Q_DISABLE_COPY(DrawerPrivate)
Q_DECLARE_PUBLIC(Drawer)
public:
DrawerPrivate(Drawer *q);
2016-06-24 04:50:24 +00:00
Drawer *const q_ptr;
DrawerStateMachine *const stateMachine;
QWidget *const window;
int width;
};
#endif // DRAWER_P_H