#ifndef STYLE_H #define STYLE_H #include 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