GraspGeneratorComponentPlugin.cpp
Go to the documentation of this file.
2 
4 
5 namespace armarx
6 {
7  namespace plugins
8  {
9 
10  void
12  {
13  parent<Component>().usingProxyFromProperty(PROPERTY_NAME);
14  }
15 
16  void
18  {
19  parent<Component>().getProxyFromProperty(_graspGenerator, PROPERTY_NAME);
20  }
21 
22  void
25  {
26  if (!properties->hasDefinition(PROPERTY_NAME))
27  {
28  properties->defineOptionalProperty<std::string>(
29  PROPERTY_NAME, "GraspGenerator", "Name of the GraspGenerator");
30  }
31  }
32 
33  GraspGeneratorInterfacePrx
35  {
36  return _graspGenerator;
37  }
38 
39 
40  } // namespace plugins
41 } // namespace armarx
42 
43 namespace armarx
44 {
45 
47  {
48  addPlugin(plugin);
49  }
50 
51  GraspGeneratorInterfacePrx
53  {
54  return plugin->getGraspGenerator();
55  }
56 
57 
58 } // namespace armarx
armarx::GraspGeneratorComponentPluginUser::getGraspGenerator
GraspGeneratorInterfacePrx getGraspGenerator()
Definition: GraspGeneratorComponentPlugin.cpp:52
GraspGeneratorComponentPlugin.h
armarx::plugins::GraspGeneratorComponentPlugin::postCreatePropertyDefinitions
void postCreatePropertyDefinitions(PropertyDefinitionsPtr &properties) override
Definition: GraspGeneratorComponentPlugin.cpp:23
armarx::GraspGeneratorComponentPluginUser::GraspGeneratorComponentPluginUser
GraspGeneratorComponentPluginUser()
Definition: GraspGeneratorComponentPlugin.cpp:46
armarx::ManagedIceObject::addPlugin
PluginT * addPlugin(const std::string prefix="", ParamsT &&... params)
Definition: ManagedIceObject.h:186
plugins
armarx::plugins::GraspGeneratorComponentPlugin::preOnInitComponent
void preOnInitComponent() override
Definition: GraspGeneratorComponentPlugin.cpp:11
armarx::plugins::GraspGeneratorComponentPlugin::preOnConnectComponent
void preOnConnectComponent() override
Definition: GraspGeneratorComponentPlugin.cpp:17
armarx::plugins::GraspGeneratorComponentPlugin::getGraspGenerator
GraspGeneratorInterfacePrx getGraspGenerator()
Definition: GraspGeneratorComponentPlugin.cpp:34
Component.h
IceUtil::Handle< class PropertyDefinitionContainer >
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27