PlatformControlSkillProvider.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#include <memory>
26
27// ArmarX
29
30// RobotAPI
34
35// Proxies
36#include <RobotAPI/interface/units/PlatformUnitInterface.h>
37
38// Best put your skills in seperate libs
41
43{
45 virtual public armarx::Component,
47 virtual public armem::ClientPluginUser,
49 {
50 public:
52
53 /// @see armarx::ManagedIceObject::getDefaultName()
54 std::string getDefaultName() const override;
55
56 protected:
58
59 void onInitComponent() override;
60 void onConnectComponent() override;
61 void onDisconnectComponent() override;
62 void onExitComponent() override;
63
64 private:
65 // skillContextes
66 PlatformControlSkillContext platformControlSkillContext;
67 };
68} // namespace armarx::skills::provider
Provides a ready-to-use ArViz client arviz as member variable.
Baseclass for all ArmarX ManagedIceObjects requiring properties.
Definition Component.h:94
void onInitComponent() override
Pure virtual hook for the subclass.
armarx::PropertyDefinitionsPtr createPropertyDefinitions() override
void onConnectComponent() override
Pure virtual hook for the subclass.
client::plugins::PluginUser ClientPluginUser
IceUtil::Handle< class PropertyDefinitionContainer > PropertyDefinitionsPtr
PropertyDefinitions smart pointer type.