2017-07-02 20:55:56 +01:00
|
|
|
#include "qapple.h"
|
|
|
|
#include <QApplication>
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
2017-10-10 14:26:40 +01:00
|
|
|
|
|
|
|
QApplication::setOrganizationName("AndSoft");
|
|
|
|
QApplication::setApplicationName("QAppleEmulator");
|
|
|
|
|
2017-07-02 20:55:56 +01:00
|
|
|
QApple w;
|
|
|
|
w.show();
|
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|