11 lines
148 B
C
11 lines
148 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "ITheme.h"
|
||
|
|
|
||
|
|
class FusionTheme : public ITheme {
|
||
|
|
public:
|
||
|
|
virtual ~FusionTheme() {}
|
||
|
|
|
||
|
|
QString qtTheme() override;
|
||
|
|
};
|