Skip to content

Commit

Permalink
update name value pairs
Browse files Browse the repository at this point in the history
  • Loading branch information
ThijsBeurskensTUE committed Jul 17, 2023
1 parent d6e0535 commit 9eb318c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions include/ed/serialization/boost_serialization.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace ed { // functions that require access to private members
void WorldModel::serialize(Archive & ar, const unsigned int /*version*/) {
ar & make_nvp("revision_", revision_);
ar & make_nvp("entity_map_", entity_map_);
ar & make_nvp("entities", entities_);
ar & make_nvp("entities_", entities_);
ar & make_nvp("entity_revisions_", entity_revisions_);
ar & make_nvp("entity_shape_revisions_", entity_shape_revisions_);
ar & make_nvp("entity_empty_spots_", entity_empty_spots_);
Expand All @@ -40,17 +40,17 @@ namespace ed { // functions that require access to private members
ar & make_nvp("revision_", revision_);
ar & make_nvp("type_", type_);
ar & make_nvp("types_", types_);
ar & make_nvp("existence_prob", existence_prob_);
ar & make_nvp("last_update_timestamp", last_update_timestamp_);
ar & make_nvp("measurements", measurements_);
ar & make_nvp("existence_prob_", existence_prob_);
ar & make_nvp("last_update_timestamp_", last_update_timestamp_);
ar & make_nvp("measurements_", measurements_);
ar & make_nvp("best_measurement_", best_measurement_);
ar & make_nvp("measurements_seq_", measurements_seq_);
ar & make_nvp("shape_", shape_);
ar & make_nvp("volumes_", volumes_);
ar & make_nvp("shape_revision_", shape_revision_);
ar & make_nvp("convex_hull_map_", convex_hull_map_);
ar & make_nvp("convex_hull_new_", convex_hull_new_);
ar & make_nvp("has_pose", has_pose_);
ar & make_nvp("has_pose_", has_pose_);
ar & make_nvp("config_", config_);
ar & make_nvp("relations from_", relations_from_);
ar & make_nvp("relations_to_", relations_to)_;
Expand All @@ -62,7 +62,7 @@ namespace ed { // functions that require access to private members
void UUID::serialize(Archive & ar, const unsigned int /*version*/)
{
ar & make_nvp("id_", id_);
ar & make_nvp("idx_", idx);
ar & make_nvp("idx", idx);
}

/*template <class Archive>
Expand Down

0 comments on commit 9eb318c

Please sign in to comment.