This repository has been archived on 2020-09-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
libs/cd_utils/pult/main.cpp

12 lines
208 B
C++

#include <QtGui/QApplication>
#include "cd_pult.h"
int main(int argc, char *argv[]) {
PIFile::setDefaultCharset("UTF-8");
QApplication a(argc, argv);
CD_Pult w;
w.show();
return a.exec();
}