ice_conversions.cpp
Go to the documentation of this file.
1#include "ice_conversions.h"
2
4
6{
7
8 void
9 wm::toIce(data::EntityInstance& ice, const EntityInstance& data)
10 {
11 base::toIce(ice, data);
12 }
13
14 void
15 wm::fromIce(const data::EntityInstance& ice, EntityInstance& data)
16 {
17 base::fromIce(ice, data);
18 }
19
20 void
21 wm::toIce(data::EntitySnapshot& ice, const EntitySnapshot& snapshot)
22 {
23 base::toIce(ice, snapshot);
24 }
25
26 void
27 wm::fromIce(const data::EntitySnapshot& ice, EntitySnapshot& snapshot)
28 {
29 base::fromIce(ice, snapshot);
30 }
31
32 void
33 wm::toIce(data::Entity& ice, const Entity& entity)
34 {
35 base::toIce(ice, entity);
36 }
37
38 void
39 wm::fromIce(const data::Entity& ice, Entity& entity)
40 {
41 base::fromIce(ice, entity);
42 }
43
44 void
45 wm::toIce(data::ProviderSegment& ice, const ProviderSegment& providerSegment)
46 {
47 base::toIce(ice, providerSegment);
48 }
49
50 void
51 wm::fromIce(const data::ProviderSegment& ice, ProviderSegment& providerSegment)
52 {
53 base::fromIce(ice, providerSegment);
54 }
55
56 void
57 wm::toIce(data::CoreSegment& ice, const CoreSegment& coreSegment)
58 {
59 base::toIce(ice, coreSegment);
60 }
61
62 void
63 wm::fromIce(const data::CoreSegment& ice, CoreSegment& coreSegment)
64 {
65 base::fromIce(ice, coreSegment);
66 }
67
68 void
69 wm::toIce(data::Memory& ice, const Memory& memory)
70 {
71 base::toIce(ice, memory);
72 }
73
74 void
75 wm::fromIce(const data::Memory& ice, Memory& memory)
76 {
78 }
79
80} // namespace armarx::armem::server
Brief description of class memory.
Definition memory.h:39
void toIce(data::EntityInstanceMetadata &ice, const EntityInstanceMetadata &metadata)
void fromIce(const data::EntityInstanceMetadata &ice, EntityInstanceMetadata &metadata)
void toIce(data::EntityInstance &ice, const EntityInstance &data)
armem::wm::EntitySnapshot EntitySnapshot
void fromIce(const data::EntityInstance &ice, EntityInstance &data)
armem::wm::EntityInstance EntityInstance