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
Package registry
Container Registry
Model registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Florian Leander Singer
RobotAPI
Commits
3a807409
Commit
3a807409
authored
3 years ago
by
Fabian Reister
Browse files
Options
Downloads
Patches
Plain Diff
articulatedobjectmemoryinterface
parent
00998cc6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/RobotAPI/interface/armem/server/ArticulatedObjectMemoryInterface.ice
+72
-0
72 additions, 0 deletions
...terface/armem/server/ArticulatedObjectMemoryInterface.ice
with
72 additions
and
0 deletions
source/RobotAPI/interface/armem/server/ArticulatedObjectMemoryInterface.ice
0 → 100644
+
72
−
0
View file @
3a807409
/*
* 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/>.
*
* @author Fabian Reister ( fabian dot reister at kit dot edu )
* @date 2021
* @copyright http://www.gnu.org/licenses/gpl-2.0.txt
* GNU General Public License
*/
#pragma once
#include
<RobotAPI/interface/armem/server/MemoryInterface.ice>
#include
<RobotAPI/interface/objectpose/ObjectPoseStorageInterface.ice>
module
armarx
{
module
articulated_object
{
interface
ArticulatedObjectPoseStorageInterface
extends
armarx
::
articulated_object
::
ArticulatedObjectTopic
{
// Object poses
data
::
ArticulatedObjects
getArticulatedObjects
();
data
::
ArticulatedObjects
getArticulatedObjectsByProvider
(
string
providerName
);
// Provider information
bool
hasProvider
(
string
providerName
);
Ice
::
StringSeq
getAvailableProviderNames
();
// ProviderInfoMap getAvailableProvidersInfo();
// ProviderInfo getProviderInfo(string providerName);
// Requesting
//observer::RequestObjectsOutput requestArticulatedObjects(
// observer::RequestObjectsInput input);
};
}
module
armem
{
module
server
{
interface
ArticulatedObjectInstanceSegmentInterface
extends
armarx
::
objpose
::
ObjectPoseStorageInterface
{
};
interface
ArticulatedObjectMemoryInterface
extends
MemoryInterface
,
ArticulatedObjectInstanceSegmentInterface
{
};
};
};
};
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