Add method WellContainer<T>::wells()

This commit is contained in:
Joakim Hove
2021-10-15 14:14:20 +02:00
parent d925e74b76
commit c8cbd32f85
3 changed files with 18 additions and 0 deletions

View File

@@ -73,6 +73,10 @@ public:
return this->wells_.size();
}
std::vector<std::string> wells() const {
return this->wells_.wells();
}
int numWells() const
{