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
64a8b66c
Commit
64a8b66c
authored
4 years ago
by
Rainer Kartmann
Browse files
Options
Downloads
Patches
Plain Diff
Add BlackWhitelist interface
parent
cb05ae78
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!69
Add DebugDrawerToArViz
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/RobotAPI/interface/CMakeLists.txt
+2
-1
2 additions, 1 deletion
source/RobotAPI/interface/CMakeLists.txt
source/RobotAPI/interface/core/BlackWhitelist.ice
+55
-0
55 additions, 0 deletions
source/RobotAPI/interface/core/BlackWhitelist.ice
with
57 additions
and
1 deletion
source/RobotAPI/interface/CMakeLists.txt
+
2
−
1
View file @
64a8b66c
...
...
@@ -10,6 +10,7 @@ set(SLICE_FILES
observers/ObserverFilters.ice
observers/GraspCandidateObserverInterface.ice
core/BlackWhitelist.ice
core/PoseBase.ice
core/OrientedPoint.ice
core/LinkedPoseBase.ice
...
...
@@ -63,7 +64,7 @@ set(SLICE_FILES
units/RobotUnit/NJointCartesianNaturalPositionController.ice
units/RobotUnit/RobotUnitInterface.ice
units/RobotUnit/NJointBimanualForceController.ice
units/RobotUnit/NJointJointSpaceDMPController.ice
...
...
This diff is collapsed.
Click to expand it.
source/RobotAPI/interface/core/BlackWhitelist.ice
0 → 100644
+
55
−
0
View file @
64a8b66c
/*
* This file is part of ArmarX.
*
* ArmarX is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* ArmarX is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package MemoryX::WorkingMemory
* @author Kai Welke ( welke at kit dot edu), Alexey Kozlov ( kozlov at kit dot edu)
* @date 2012
* @copyright http://www.gnu.org/licenses/gpl-2.0.txt
* GNU General Public License
*/
#pragma once
#include
<Ice/BuiltinSequences.ice>
module
armarx
{
struct
StringListUpdate
{
bool
clear
=
false
;
Ice
::
StringSeq
add
;
Ice
::
StringSeq
set
;
};
struct
BlackWhitelistUpdate
{
StringListUpdate
blacklist
;
StringListUpdate
whitelist
;
};
interface
BlackWhitelistInterface
{
void
updateBlackWhiteList
(
BlackWhitelistUpdate
update
);
}
interface
BlackWhitelistTopic
{
void
updateBlackWhiteList
(
BlackWhitelistUpdate
update
);
}
};
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