17 lines
192 B
C++
17 lines
192 B
C++
#ifndef STYLEMANAGER_H
|
|
#define STYLEMANAGER_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace olive {
|
|
namespace style {
|
|
|
|
void AppSetDefault();
|
|
|
|
void WidgetSetNative(QWidget *w);
|
|
|
|
}
|
|
}
|
|
|
|
#endif // STYLEMANAGER_H
|