#5757 Python : Add access to time_t values

This commit is contained in:
Magne Sjaastad
2020-04-01 15:07:54 +02:00
committed by Gaute Lindkvist
parent 27def6c132
commit ae15122632
5 changed files with 135 additions and 1 deletions

View File

@@ -58,3 +58,18 @@ public:
bool resultIsPersistent() const override;
std::unique_ptr<PdmObjectHandle> defaultResult() const override;
};
//==================================================================================================
///
//==================================================================================================
class RimcSummaryCase_TimeSteps : public caf::PdmObjectMethod
{
CAF_PDM_HEADER_INIT;
public:
RimcSummaryCase_TimeSteps( caf::PdmObjectHandle* self );
caf::PdmObjectHandle* execute();
bool resultIsPersistent() const override;
std::unique_ptr<PdmObjectHandle> defaultResult() const override;
};