Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RobotAPI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
RobotAPI
Commits
97554f18
Commit
97554f18
authored
2 years ago
by
Rainer Kartmann
Browse files
Options
Downloads
Patches
Plain Diff
Update usages
parent
d0ab5e86
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!325
Add to/fromAron() for one-sided optional and test utilities for C++/Python conversion
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/RobotAPI/libraries/aron/core/rw.h
+2
-2
2 additions, 2 deletions
source/RobotAPI/libraries/aron/core/rw.h
with
2 additions
and
2 deletions
source/RobotAPI/libraries/aron/core/rw.h
+
2
−
2
View file @
97554f18
...
...
@@ -26,7 +26,7 @@ namespace armarx::aron
}
template
<
class
ReaderT
,
class
DtoT
,
class
BoT
>
requires
(
data
::
isReader
<
ReaderT
>
&&
!
DtoAndBoAreSame
<
DtoT
,
BoT
>
)
requires
(
data
::
isReader
<
ReaderT
>
&&
!
detail
::
DtoAndBoAreSame
<
DtoT
,
BoT
>
)
inline
void
read
(
ReaderT
&
aron_r
,
typename
ReaderT
::
InputType
&
input
,
BoT
&
ret
)
{
DtoT
aron
;
...
...
@@ -36,7 +36,7 @@ namespace armarx::aron
}
template
<
class
WriterT
,
class
DtoT
,
class
BoT
>
requires
(
data
::
isWriter
<
WriterT
>
&&
!
DtoAndBoAreSame
<
DtoT
,
BoT
>
)
requires
(
data
::
isWriter
<
WriterT
>
&&
!
detail
::
DtoAndBoAreSame
<
DtoT
,
BoT
>
)
inline
void
write
(
WriterT
&
aron_w
,
const
BoT
&
input
,
typename
WriterT
::
ReturnType
&
ret
,
const
armarx
::
aron
::
Path
&
aron_p
=
armarx
::
aron
::
Path
())
{
DtoT
aron
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment