TableManager: export the Eqldims object

this object corresponds to the EQLDIMS keyword. Probably it is not the
most intuitive place to provide access to this keyword, but as far as
I can see the table manager is the only place where this object is
already properly instantiated.
This commit is contained in:
Andreas Lauser
2017-02-13 16:38:23 +01:00
parent c410f99625
commit 1fa80328cf
2 changed files with 4 additions and 1 deletions

View File

@@ -520,6 +520,9 @@ namespace Opm {
return m_tabdims;
}
const Eqldims& TableManager::getEqldims() const {
return *m_eqldims;
}
/*
const std::vector<SwofTable>& TableManager::getSwofTables() const {

View File

@@ -60,8 +60,8 @@ namespace Opm {
const TableContainer& operator[](const std::string& tableName) const;
bool hasTables( const std::string& tableName ) const;
const Tabdims& getTabdims() const;
const Eqldims& getEqldims() const;
const TableContainer& getSwofTables() const;
const TableContainer& getSgwfnTables() const;