Update Introduction authored by Fabian Peller's avatar Fabian Peller
...@@ -87,22 +87,22 @@ Aron data objects and Aron data DTOs are similar structured to type objects and ...@@ -87,22 +87,22 @@ Aron data objects and Aron data DTOs are similar structured to type objects and
string type; string type;
vector<byte> data; vector<byte> data;
} }
Int { // dto called armarx::aron::type::dto::AronInt Int { // dto called armarx::aron::data::dto::AronInt
int value; int value;
} }
Long { // dto called armarx::aron::type::dto::AronLong Long { // dto called armarx::aron::data::dto::AronLong
long value; long value;
} }
Float { // dto called armarx::aron::type::dto::AronFloat Float { // dto called armarx::aron::data::dto::AronFloat
float value; float value;
} }
Double { // dto called armarx::aron::type::dto::AronDouble Double { // dto called armarx::aron::data::dto::AronDouble
double value; double value;
} }
String { // dto called armarx::aron::type::dto::AronString String { // dto called armarx::aron::data::dto::AronString
string value; string value;
} }
Bool { // dto called armarx::aron::type::dto::AronBool Bool { // dto called armarx::aron::data::dto::AronBool
bool value; bool value;
} }
``` ```
... ...
......