This repository has been archived on 2026-05-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
DRAwer_2_0/src/main.cpp

10 lines
194 B
C++

#include "DRAWer_2_0.h"
#include <QtWidgets/QApplication>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
DRAWer_2_0 window;
window.show();
return app.exec();
}