#1495 Add 'Completions' folder to RimWellPath

Move perforation intervals into folder
Move fishbone definitions and fishbone well paths into folder
This commit is contained in:
Magne Sjaastad
2017-05-19 15:44:32 +02:00
parent 1853f97bbc
commit 5ec2764c16
18 changed files with 218 additions and 67 deletions

View File

@@ -37,12 +37,14 @@ class RimFishboneWellPathCollection : public RimCheckableNamedObject
public:
RimFishboneWellPathCollection();
~RimFishboneWellPathCollection();
void appendCompletion(RimFishboneWellPath* completion);
void importCompletionsFromFile(const QList<QString> filePaths);
void importCompletionsFromFile(const QStringList& filePaths);
void fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue);
caf::PdmChildArrayField<RimFishboneWellPath*> m_completions;
private:
void appendCompletion(RimFishboneWellPath* completion);
private:
caf::PdmChildArrayField<RimFishboneWellPath*> m_wellPaths;
};