Extend serialization to gmx_int64_t
[alexxy/gromacs.git] / src / gromacs / utility / inmemoryserializer.cpp
index fb7d4b71286283ebb5fdd3a3996dbd8d56c93c5c..a741b6760773068b43d2287ab939378e0c4043f8 100644 (file)
@@ -107,6 +107,11 @@ void InMemorySerializer::doInt(int *value)
     impl_->doValue(*value);
 }
 
+void InMemorySerializer::doInt64(gmx_int64_t *value)
+{
+    impl_->doValue(*value);
+}
+
 void InMemorySerializer::doFloat(float *value)
 {
     impl_->doValue(*value);
@@ -172,6 +177,11 @@ void InMemoryDeserializer::doInt(int *value)
     impl_->doValue(value);
 }
 
+void InMemoryDeserializer::doInt64(gmx_int64_t *value)
+{
+    impl_->doValue(value);
+}
+
 void InMemoryDeserializer::doFloat(float *value)
 {
     impl_->doValue(value);