com_client/main.cpp

12 lines
191 B
C++
Raw Normal View History

2024-12-25 03:03:01 +00:00
#include "com_erpc_core.hpp"
2024-11-20 02:16:11 +00:00
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
2024-12-25 03:03:01 +00:00
com_erpc_core w;
2024-11-20 02:16:11 +00:00
w.show();
return a.exec();
}