25 lines
322 B
C
25 lines
322 B
C
|
#ifndef STYLE_H
|
||
|
#define STYLE_H
|
||
|
|
||
|
#include <QCommonStyle>
|
||
|
|
||
|
class Style : public QCommonStyle
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
static Style &instance()
|
||
|
{
|
||
|
static Style instance;
|
||
|
return instance;
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
Style() {}
|
||
|
|
||
|
Style(Style const &);
|
||
|
void operator=(Style const &);
|
||
|
};
|
||
|
|
||
|
#endif // STYLE_H
|