29 double max_cap_pres{};
39 return this->max_cap_pres == other.max_cap_pres &&
40 this->option == other.option;
43 template<
class Serializer>
46 serializer(max_cap_pres);
55 explicit Ppcwmax(std::initializer_list<PpcwmaxRecord> records);
56 static Ppcwmax serializationTestObject();
57 std::size_t size()
const;
59 std::vector< PpcwmaxRecord >::const_iterator begin()
const;
60 std::vector< PpcwmaxRecord >::const_iterator end()
const;
61 const PpcwmaxRecord& operator[](
const std::size_t index)
const;
63 bool operator==(
const Ppcwmax& other)
const {
64 return this->data == other.data;
67 template<
class Serializer>
74 std::vector<PpcwmaxRecord> data;
Definition: Ppcwmax.hpp:28
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition: Exceptions.hpp:30
Definition: Ppcwmax.hpp:51
Class for (de-)serializing.
Definition: Serializer.hpp:94