24#include <unordered_set>
32 void add_well(
const std::string& wname);
33 void add_group(
const std::string& gname);
35 bool has_well(
const std::string& wname)
const;
36 bool has_group(
const std::string& gname)
const;
37 static WGNames serializationTestObject();
38 bool operator==(
const WGNames& other)
const;
40 template<
class Serializer>
43 serializer(this->wells);
44 serializer(this->groups);
48 std::unordered_set<std::string> wells;
49 std::unordered_set<std::string> groups;
Definition WGNames.hpp:29
Class for (de-)serializing.
Definition Serializer.hpp:84
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition Exceptions.hpp:30