add boilerplate code to Style class

This commit is contained in:
lazerpants 2016-03-18 12:24:51 +03:00
parent 84d9b3e986
commit 54db83c3d9
2 changed files with 21 additions and 0 deletions

View File

@ -1 +1,10 @@
#include "style.h"
Style::Style()
: QCommonStyle()
{
}
Style::~Style()
{
}

12
style.h
View File

@ -1,4 +1,16 @@
#ifndef STYLE_H
#define STYLE_H
#include <QCommonStyle>
class Style : public QCommonStyle
{
Q_OBJECT
public:
Style();
~Style();
};
#endif // STYLE_H