ice_conversions.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <RobotAPI/interface/armem/commit.h>
4 #include <RobotAPI/interface/armem/memory.h>
5 
6 #include "memory_definitions.h"
7 
8 namespace armarx::armem::wm
9 {
10 
11  void toIce(data::EntityInstance& ice, const EntityInstance& data);
13 
14 
15  void toIce(data::EntitySnapshot& ice, const EntitySnapshot& snapshot);
16  void fromIce(const data::EntitySnapshot& ice, EntitySnapshot& snapshot);
17 
18  void toIce(data::Entity& ice, const Entity& entity);
19  void fromIce(const data::Entity& ice, Entity& entity);
20 
21 
22  void toIce(data::ProviderSegment& ice, const ProviderSegment& providerSegment);
23  void fromIce(const data::ProviderSegment& ice, ProviderSegment& providerSegment);
24 
25  void toIce(data::CoreSegment& ice, const CoreSegment& coreSegment);
26  void fromIce(const data::CoreSegment& ice, CoreSegment& coreSegment);
27 
28  void toIce(data::Memory& ice, const Memory& memory);
29  void fromIce(const data::Memory& ice, Memory& memory);
30 } // namespace armarx::armem::wm
31 
32 // Must be included after the prototypes. Otherwise the compiler cannot find the correct methods in ice_coversion_templates.h
armarx::armem::server::wm::EntityInstance
armem::wm::EntityInstance EntityInstance
Definition: forward_declarations.h:65
armarx::armem::wm::fromIce
void fromIce(const data::EntityInstance &ice, EntityInstance &data)
Definition: ice_conversions.cpp:16
armarx::armem::wm
Definition: MemoryNameSystem.h:45
data
uint8_t data[1]
Definition: EtherCATFrame.h:68
ice_conversions.h
memory_definitions.h
armarx::armem::server::wm::EntitySnapshot
armem::wm::EntitySnapshot EntitySnapshot
Definition: forward_declarations.h:66
armarx::armem::wm::toIce
void toIce(data::EntityInstance &ice, const EntityInstance &data)
Definition: ice_conversions.cpp:10