aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Position.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2019-09-02 18:53:21 -0400
committerClyne Sullivan <clyne@bitgloo.com>2019-09-02 18:53:21 -0400
commitaa7b0a92d065b4435467d482ec65dd97b03459ee (patch)
tree0b1c4406f4fbeea6fee2e73eaf735386c5cc1ab6 /src/components/Position.hpp
parent6614ea639414caab546091841bf920fe6459cc9e (diff)
made json names readable
Diffstat (limited to 'src/components/Position.hpp')
-rw-r--r--src/components/Position.hpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/components/Position.hpp b/src/components/Position.hpp
index 6157265..56e8707 100644
--- a/src/components/Position.hpp
+++ b/src/components/Position.hpp
@@ -44,11 +44,15 @@ public:
}
void serialize(cereal::JSONOutputArchive& ar) final {
- ar(x, y);
+ ar(CEREAL_NVP(x), CEREAL_NVP(y));
}
void serialize(cereal::JSONInputArchive& ar) final {
- ar(x, y);
+ ar(CEREAL_NVP(x), CEREAL_NVP(y));
+ }
+
+ std::string serializeName(void) const final {
+ return "Position";
}
};