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);
|
2024-11-25 01:30:14 +00:00
|
|
|
|
RasterProcessTool w;// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2024-11-15 09:23:00 +00:00
|
|
|
|
w.show();
|
|
|
|
|
return a.exec();
|
2024-11-15 01:49:05 +00:00
|
|
|
|
}
|