From 54db83c3d94d1a30b72fa6dd7b3d06e375811d25 Mon Sep 17 00:00:00 2001 From: lazerpants Date: Fri, 18 Mar 2016 12:24:51 +0300 Subject: [PATCH] add boilerplate code to Style class --- style.cpp | 9 +++++++++ style.h | 12 ++++++++++++ 2 files changed, 21 insertions(+) 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