21 lines
277 B
C++
21 lines
277 B
C++
#ifndef EXCUSTOMSTYLE_H
|
|
#define EXCUSTOMSTYLE_H
|
|
|
|
#include <QCommonStyle>
|
|
|
|
#include "ExDefineGlobal.h"
|
|
|
|
CUSTOMSTYLE_BEDGIN_NAMESPACE
|
|
|
|
class ExCustomStyle : public QCommonStyle
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ExCustomStyle();
|
|
};
|
|
|
|
CUSTOMSTYLE_END_NAMESPACE
|
|
|
|
#endif // EXCUSTOMSTYLE_H
|