2024-11-15 01:49:05 +00:00
|
|
|
#include "RasterProcessTool.h"
|
|
|
|
#include <QtWidgets/QApplication>
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2024-11-15 09:23:00 +00:00
|
|
|
QApplication a(argc, argv);
|
|
|
|
RasterProcessTool w;
|
|
|
|
w.show();
|
|
|
|
return a.exec();
|
|
|
|
|
2024-11-15 01:49:05 +00:00
|
|
|
}
|