Export SummaryState from EclipseIO object

This commit is contained in:
Joakim Hove
2019-01-28 08:46:49 +01:00
parent 2b2d4901d1
commit 959502e8cd
2 changed files with 8 additions and 0 deletions

View File

@@ -41,6 +41,7 @@ namespace Opm {
class EclipseState;
class SummaryConfig;
class Schedule;
class SummaryState;
/*!
* \brief A class to write the reservoir state and the well state of a
@@ -224,6 +225,8 @@ public:
EclipseIO( const EclipseIO& ) = delete;
~EclipseIO();
const SummaryState& summaryState() const;
private:
class Impl;
std::unique_ptr< Impl > impl;