RequestObjects.h
Go to the documentation of this file.
1#pragma once
2
3#include <RobotAPI/statecharts/ObjectMemoryGroup/RequestObjects.generated.h>
4
6{
7 class RequestObjects : public RequestObjectsGeneratedBase<RequestObjects>
8 {
9 public:
11
12 // inherited from StateBase
13 void onEnter() override;
14 void run() override;
15 // void onBreak() override;
16 void onExit() override;
17
18 // static functions for AbstractFactory Method
20 static SubClassRegistry Registry;
21
22 // DO NOT INSERT ANY CLASS MEMBERS,
23 // use stateparameters instead,
24 // if classmember are neccessary nonetheless, reset them in onEnter
25 };
26} // namespace armarx::ObjectMemoryGroup
static XMLStateFactoryBasePtr CreateInstance(XMLStateConstructorParams stateData)
RequestObjects(const XMLStateConstructorParams &stateData)
IceInternal::Handle< XMLStateFactoryBase > XMLStateFactoryBasePtr
Definition XMLState.h:64