expand methods

This commit is contained in:
goncalvesmachadoc
2023-07-11 11:27:45 +02:00
parent 0aa2941150
commit ca6f232486
3 changed files with 27 additions and 0 deletions

View File

@@ -68,4 +68,10 @@ namespace Opm {
return m_lgrs.get( lgrName );
}
void LgrCollection::addLgr(const std::string& lgrName) {
Carfin lgr(lgrName);
m_lgrs.insert(std::make_pair(lgr.NAME(), lgr));
}
}