RasterProcessTool/SimulationSAR/QToolAbstract.h

29 lines
617 B
C
Raw Normal View History

2024-11-25 17:51:20 +00:00
#pragma once
#include <QTreeWidgetItem>
#include <QPushButton>
#include <QMessageBox>
#include <QDebug>
#include <QWidget>
#include <QItemDelegate>
#include <QString>
// <20>Զ<EFBFBD><D4B6><EFBFBD> QTreeWidgetItem <20>̳<EFBFBD><CCB3><EFBFBD>
class QToolAbstract : public QObject {
Q_OBJECT
public:
QToolAbstract(QObject* parent=nullptr);
~QToolAbstract();
public slots:
virtual void excute();
virtual void setToolXpath(QVector<QString> toolPath);
virtual void setToolName(QString toolname);
virtual QVector<QString> getToolXpath();
virtual QString getToolName();
public:
QVector<QString> toolPath;
QString toolname;
};