diff --git a/style.cpp b/style.cpp index fed60ea..b3e2b1a 100644 --- a/style.cpp +++ b/style.cpp @@ -1 +1,10 @@ #include "style.h" + +Style::Style() + : QCommonStyle() +{ +} + +Style::~Style() +{ +} diff --git a/style.h b/style.h index e5aebeb..5675551 100644 --- a/style.h +++ b/style.h @@ -1,4 +1,16 @@ #ifndef STYLE_H #define STYLE_H +#include + +class Style : public QCommonStyle +{ + Q_OBJECT + +public: + Style(); + ~Style(); +}; + + #endif // STYLE_H