SkillProviderExample.h
Go to the documentation of this file.
1
2/*
3 * This file is part of ArmarX.
4 *
5 * ArmarX is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * ArmarX is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 *
17 * @author Fabian Reister ( fabian dot reister at kit dot edu )
18 * @date 2021
19 * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20 * GNU General Public License
21 */
22
23#pragma once
24
25
26// ArmarX
28
29// RobotAPI
31
32#include "BusyWaiting.h"
33#include "Callback.h"
34#include "Chaining.h"
35#include "ChainingAsync.h"
37#include "HelloWorld.h"
38#include "Incomplete.h"
39#include "InstantKill.h"
40#include "RandomChaining.h"
41#include "RandomExitStatus.h"
42#include "Recursive.h"
43#include "Segfault.h"
45#include "Sleep.h"
46#include "Timeout.h"
47
49{
50 /**
51 * @defgroup Component-ExampleClient ExampleClient
52 * @ingroup RobotAPI-Components
53 * A description of the component ExampleClient.
54 *
55 * @class ExampleClient
56 * @ingroup Component-ExampleClient
57 * @brief Brief description of class ExampleClient.
58 *
59 * Detailed description of class ExampleClient.
60 */
62 virtual public armarx::Component,
64 {
65 public:
67
68 /// @see armarx::ManagedIceObject::getDefaultName()
69 std::string getDefaultName() const override;
70
71 protected:
73
74 void onInitComponent() override;
75 void onConnectComponent() override;
76 void onDisconnectComponent() override;
77 void onExitComponent() override;
78
79 private:
80 };
81} // namespace armarx::skills::provider
Baseclass for all ArmarX ManagedIceObjects requiring properties.
Definition Component.h:94
void onInitComponent() override
Pure virtual hook for the subclass.
void onDisconnectComponent() override
Hook for subclass.
armarx::PropertyDefinitionsPtr createPropertyDefinitions() override
void onConnectComponent() override
Pure virtual hook for the subclass.
IceUtil::Handle< class PropertyDefinitionContainer > PropertyDefinitionsPtr
PropertyDefinitions smart pointer type.