mirror of https://gitlab.com/cppit/jucipp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
234 B
15 lines
234 B
|
10 years ago
|
#ifndef JUCI_THEME_H_
|
||
|
|
#define JUCI_THEME_H_
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
namespace Theme {
|
||
|
|
class Config {
|
||
|
|
public:
|
||
|
|
std::string current_theme() { return theme + "/" + main; }
|
||
|
|
std::string theme, main;
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif // JUCI_THEME_H_
|