19 lines
332 B
C
19 lines
332 B
C
|
#ifndef RAISEDBUTTON_P_H
|
||
|
#define RAISEDBUTTON_P_H
|
||
|
|
||
|
#include "flatbutton_p.h"
|
||
|
|
||
|
class RaisedButtonPrivate : public FlatButtonPrivate
|
||
|
{
|
||
|
Q_DISABLE_COPY(RaisedButtonPrivate)
|
||
|
Q_DECLARE_PUBLIC(RaisedButton)
|
||
|
|
||
|
public:
|
||
|
RaisedButtonPrivate(RaisedButton *q)
|
||
|
: FlatButtonPrivate(q)
|
||
|
{
|
||
|
}
|
||
|
};
|
||
|
|
||
|
#endif // RAISEDBUTTON_P_H
|