mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
LocalGrid. Move implementation to cpp file
This commit is contained in:
@@ -32,3 +32,35 @@ RigLocalGrid::RigLocalGrid(RigMainGrid* mainGrid):
|
||||
RigLocalGrid::~RigLocalGrid()
|
||||
{
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RigGridBase * RigLocalGrid::parentGrid() const
|
||||
{
|
||||
return m_parentGrid;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RigLocalGrid::setParentGrid(RigGridBase * parentGrid)
|
||||
{
|
||||
m_parentGrid = parentGrid;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
size_t RigLocalGrid::positionInParentGrid() const
|
||||
{
|
||||
return m_positionInParentGrid;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RigLocalGrid::setPositionInParentGrid(size_t positionInParentGrid)
|
||||
{
|
||||
m_positionInParentGrid = positionInParentGrid;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user