#1842 RFT Plot. Implement property view and RFT plot commands

This commit is contained in:
Bjørn Erik Jensen
2017-09-29 11:24:18 +02:00
parent 536225eb7e
commit 141bfd27d7
16 changed files with 306 additions and 658 deletions

View File

@@ -271,6 +271,17 @@ void RimWellPathCollection::readAndAddWellPaths(std::vector<RimWellPath*>& wellP
this->sortWellsByName();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimWellPathCollection::addWellPaths(const std::vector<RimWellPath*> wellPaths)
{
for(const auto& wellPath : wellPaths)
{
this->wellPaths.push_back(wellPath);
}
this->sortWellsByName();
}
//--------------------------------------------------------------------------------------------------
///