#include #include "APP/APP_Theme.h" #include "APP/APP_UIWindow.h" int main(int argc, char *argv[]) { QApplication app(argc, argv); app.setPalette(APP::APP_Theme::App_Func_GetPalette()); app.setFont(APP::APP_Theme::App_Func_GetBodyFont()); app.setStyleSheet(APP::APP_Theme::App_Func_GetStyleSheet()); APP::App_UIWindow window; window.show(); return app.exec(); }