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