1d468ac35a
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
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;
|
|
};
|