1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00

20 lines
323 B
C++
Raw Normal View History

2017-10-17 21:45:34 +08:00
#include "mainwindow.h"
#include <QApplication>
#include "qqtsubprotocoltest.h"
int main(int argc, char* argv[])
2017-10-17 21:45:34 +08:00
{
QApplication a(argc, argv);
QQtSubProtocolTest* p = new QQtSubProtocolTest();
QByteArray bytes = "CCCCCCCC";
p->translator(bytes);
2017-10-17 21:45:34 +08:00
MainWindow w;
w.show();
return a.exec();
}