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
string type;
vector<byte> data;
}
Int { // dto called armarx::aron::type::dto::AronInt
Int { // dto called armarx::aron::data::dto::AronInt
int value;
}
Long { // dto called armarx::aron::type::dto::AronLong
Long { // dto called armarx::aron::data::dto::AronLong
long value;
}
Float { // dto called armarx::aron::type::dto::AronFloat
Float { // dto called armarx::aron::data::dto::AronFloat
float value;
}
Double { // dto called armarx::aron::type::dto::AronDouble
Double { // dto called armarx::aron::data::dto::AronDouble
double value;
}
String { // dto called armarx::aron::type::dto::AronString
String { // dto called armarx::aron::data::dto::AronString
string value;
}
Bool { // dto called armarx::aron::type::dto::AronBool
Bool { // dto called armarx::aron::data::dto::AronBool
bool value;
}
```
......
......