add serialization template to SolventDensityTable

This commit is contained in:
Arne Morten Kvarving 2020-03-17 10:42:22 +01:00
parent 6bbf72bba8
commit c5694f5d80

View File

@ -45,6 +45,12 @@ namespace Opm {
return this->m_tableValues.size();
}
template<class Serializer>
void serializeOp(Serializer& serializer)
{
serializer(m_tableValues);
}
private:
std::vector<double> m_tableValues;
};