add serialization template to WellFoamProperties

This commit is contained in:
Arne Morten Kvarving
2020-03-18 12:01:57 +01:00
parent 7e817e7d26
commit 4d0672d31a

View File

@@ -31,6 +31,12 @@ struct WellFoamProperties
void handleWFOAM(const DeckRecord& rec);
bool operator==(const WellFoamProperties& other) const;
bool operator!=(const WellFoamProperties& other) const;
template<class Serializer>
void serializeOp(Serializer& serializer)
{
serializer(m_foamConcentration);
}
};
} // namespace Opm