15 lines
191 B
C
15 lines
191 B
C
|
#ifndef EXCUSTOMSTYLE_H
|
||
|
#define EXCUSTOMSTYLE_H
|
||
|
|
||
|
#include <QCommonStyle>
|
||
|
|
||
|
class ExCustomStyle : public QCommonStyle
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
ExCustomStyle();
|
||
|
};
|
||
|
|
||
|
#endif // EXCUSTOMSTYLE_H
|