add serialization template to TableSchema
This commit is contained in:
parent
6b18822c47
commit
83f78c5918
@ -43,6 +43,13 @@ namespace Opm {
|
||||
size_t size() const;
|
||||
|
||||
bool operator==(const TableSchema& data) const;
|
||||
|
||||
template<class Serializer>
|
||||
void serializeOp(Serializer& serializer)
|
||||
{
|
||||
m_columns.serializeOp(serializer);
|
||||
}
|
||||
|
||||
private:
|
||||
OrderedMap<std::string, ColumnSchema> m_columns;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user