18 lines
224 B
C
18 lines
224 B
C
|
#ifndef DRAWER_P_H
|
||
|
#define DRAWER_P_H
|
||
|
|
||
|
#include <QtGlobal>
|
||
|
|
||
|
class Drawer;
|
||
|
|
||
|
class DrawerPrivate
|
||
|
{
|
||
|
Q_DISABLE_COPY(DrawerPrivate)
|
||
|
Q_DECLARE_PUBLIC(Drawer)
|
||
|
|
||
|
public:
|
||
|
DrawerPrivate(Drawer *q);
|
||
|
};
|
||
|
|
||
|
#endif // DRAWER_P_H
|