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
Merge requests
!165
fixes due to changes in simox: some methods are now const
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fixes due to changes in simox: some methods are now const
feature/robot-const-correctness
into
master
Overview
0
Commits
1
Pipelines
0
Changes
2
Merged
Fabian Reister
requested to merge
feature/robot-const-correctness
into
master
3 years ago
Overview
0
Commits
1
Pipelines
0
Changes
2
Expand
depends on
https://gitlab.com/Simox/simox/-/merge_requests/68
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
25474699
1 commit,
3 years ago
2 files
+
12
−
12
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
source/RobotAPI/libraries/core/remoterobot/RemoteRobot.cpp
+
6
−
6
Options
@@ -90,7 +90,7 @@ namespace armarx
return
_root
;
}
bool
RemoteRobot
::
hasRobotNode
(
const
std
::
string
&
robotNodeName
)
bool
RemoteRobot
::
hasRobotNode
(
const
std
::
string
&
robotNodeName
)
const
{
if
(
_cachedNodes
.
find
(
name
)
==
_cachedNodes
.
end
())
{
@@ -103,7 +103,7 @@ namespace armarx
}
bool
RemoteRobot
::
hasRobotNode
(
RobotNodePtr
robotNode
)
bool
RemoteRobot
::
hasRobotNode
(
RobotNodePtr
robotNode
)
const
{
return
this
->
hasRobotNode
(
robotNode
->
getName
());
@@ -159,7 +159,7 @@ namespace armarx
}
}
bool
RemoteRobot
::
hasRobotNodeSet
(
const
std
::
string
&
name
)
bool
RemoteRobot
::
hasRobotNodeSet
(
const
std
::
string
&
name
)
const
{
return
_robot
->
hasRobotNodeSet
(
name
);
}
@@ -539,17 +539,17 @@ namespace armarx
// Private (unused methods)
bool
RemoteRobot
::
hasEndEffector
(
const
std
::
string
&
endEffectorName
)
bool
RemoteRobot
::
hasEndEffector
(
const
std
::
string
&
endEffectorName
)
const
{
return
false
;
}
EndEffectorPtr
RemoteRobot
::
getEndEffector
(
const
std
::
string
&
endEffectorName
)
EndEffectorPtr
RemoteRobot
::
getEndEffector
(
const
std
::
string
&
endEffectorName
)
const
{
return
EndEffectorPtr
();
}
void
RemoteRobot
::
getEndEffectors
(
std
::
vector
<
EndEffectorPtr
>&
storeEEF
)
{}
void
RemoteRobot
::
getEndEffectors
(
std
::
vector
<
EndEffectorPtr
>&
storeEEF
)
const
{}
void
RemoteRobot
::
setRootNode
(
RobotNodePtr
node
)
{}
void
RemoteRobot
::
registerRobotNode
(
RobotNodePtr
node
)
{}
void
RemoteRobot
::
deregisterRobotNode
(
RobotNodePtr
node
)
{}
Loading