Surface python interface (#6370)

* Add python interface for importing surfaces with example.
This commit is contained in:
jonjenssen
2020-08-26 12:31:23 +02:00
committed by GitHub
parent 6f7534b2a9
commit cfe64f5706
12 changed files with 395 additions and 42 deletions

View File

@@ -62,3 +62,22 @@ public:
private:
caf::PdmField<int> m_caseId;
};
//==================================================================================================
///
//==================================================================================================
class RimProject_surfaceFolder : public caf::PdmObjectMethod
{
CAF_PDM_HEADER_INIT;
public:
RimProject_surfaceFolder( caf::PdmObjectHandle* self );
caf::PdmObjectHandle* execute();
bool resultIsPersistent() const override;
std::unique_ptr<PdmObjectHandle> defaultResult() const override;
bool isNullptrValidResult() const override;
private:
caf::PdmField<QString> m_folderName;
};