#ifndef _FITK_GEOMODEL_IMPORT_H___ #define _FITK_GEOMODEL_IMPORT_H___ #include "FITKInterfaceGeometryAPI.h" #include "FITKAbsGeoCommand.h" #include namespace Interface { class FITKInterfaceGeometryAPI FITKAbsGeoModelImport : public FITKAbsGeoCommand { public: explicit FITKAbsGeoModelImport() = default; virtual ~FITKAbsGeoModelImport(); void setFileName(const QString& fileName); QString getFileName() const; /** * @brief 获取几何命令类型 * @return FITKGeoEnum::FITKGeometryComType * @author LiBaojun (libaojunqd@foxmail.com) * @date 2024-08-01 */ FITKGeoEnum::FITKGeometryComType getGeometryCommandType() override; protected: QString _importFileName{}; }; } #endif