mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Now reading Odb-file and creating display model
Nothing shows up yet, but we're getting there
This commit is contained in:
@@ -56,9 +56,17 @@ RigFemPart* RigFemPartCollection::part(size_t index)
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
size_t RigFemPartCollection::partCount()
|
||||
const RigFemPart* RigFemPartCollection::part(size_t index) const
|
||||
{
|
||||
return m_femParts.size();
|
||||
return m_femParts[index].p();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
int RigFemPartCollection::partCount() const
|
||||
{
|
||||
return static_cast<int>(m_femParts.size());
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user