Internal
Public Access
16 lines
235 B
C++
16 lines
235 B
C++
#include "profiles_window.h"
|
|
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
Q_INIT_RESOURCE(KodoTermThemes);
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
ProfilesWindow window;
|
|
window.show();
|
|
|
|
return app.exec();
|
|
}
|