Newer
Older
ZXSSCJ / CounterAcq / main.cpp
TAN YUE on 30 Sep 2021 181 bytes 20210930 初始提交
#include "CounterWindow.h"

#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    CounterWindow w;
    w.show();
    return a.exec();
}