qt-material-widgets/__old/components/drawer_p.h

24 lines
406 B
C
Raw Normal View History

2017-09-29 14:26:27 +00:00
#ifndef DRAWER_P_H
#define DRAWER_P_H
#include <QObject>
class Drawer;
class DrawerStateMachine;
class DrawerPrivate
{
Q_DISABLE_COPY(DrawerPrivate)
Q_DECLARE_PUBLIC(Drawer)
public:
DrawerPrivate(Drawer *q);
Drawer *const q_ptr;
DrawerStateMachine *const stateMachine;
QWidget *const window;
int width;
};
#endif // DRAWER_P_H