hyperk-021
2025-06-05 8c679ef19e9d5c33947cdf1cc1e5550e3d442308
1
2
3
4
5
6
7
8
9
10
11
#include "HistoryTask.h"
 
#include <QApplication>
 
int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    Ripples::HistoryTask w;
    w.show();
    return a.exec();
}