Merge pull request #415 from totto82/welltest

Add method for getting all the wells in the WellTestConfig
This commit is contained in:
Joakim Hove
2018-06-06 15:45:06 +02:00
committed by GitHub
2 changed files with 6 additions and 0 deletions

View File

@@ -52,6 +52,7 @@ public:
bool has(const std::string& well, Reason reason) const;
const WTESTWell& get(const std::string& well, Reason reason) const;
size_t size() const;
const std::vector<WTESTWell>& getWells() const;
private:
std::vector<WTESTWell> wells;