This project is archived. Its data is
read-only
.
Changes
Page history
Update Introduction
authored
Dec 08, 2021
by
Fabian Peller
Show whitespace changes
Inline
Side-by-side
Aron/Introduction.md
View page @
25daa2f8
...
@@ -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
;
}
}
```
```
...
...
...
...