Go via RimWellPathCollection::addWellPath for any well path addition

This commit is contained in:
Gaute Lindkvist
2020-10-06 15:05:04 +02:00
parent 6622328622
commit 8e8534d61e
2 changed files with 18 additions and 9 deletions

View File

@@ -91,7 +91,6 @@ public:
void loadDataAndUpdate();
std::vector<RimWellPath*> addWellPaths( QStringList filePaths, QStringList* errorMessages );
std::vector<RimWellPath*> wellPaths();
void removeWellPath( RimWellPath* wellPath );
void deleteAllWellPaths();
@@ -101,9 +100,11 @@ public:
void readWellPathFormationFiles();
void reloadAllWellPathFormations();
RimWellPath* wellPathByName( const QString& wellPathName ) const;
RimWellPath* tryFindMatchingWellPath( const QString& wellName ) const;
void addWellPaths( const std::vector<RimWellPath*> incomingWellPaths );
RimWellPath* wellPathByName( const QString& wellPathName ) const;
RimWellPath* tryFindMatchingWellPath( const QString& wellName ) const;
void addWellPaths( const std::vector<RimWellPath*> incomingWellPaths );
void addWellPath( RimWellPath* wellPath );
std::vector<RimWellLogFile*> addWellLogs( const QStringList& filePaths, QStringList* errorMessages );
void addWellPathFormations( const QStringList& filePaths );