Warning: include(php/utility.php): Failed to open stream: No such file or directory in /home/argos/argos3/doc/api/embedded/a00693_source.php on line 2

Warning: include(): Failed opening 'php/utility.php' for inclusion (include_path='.:/usr/lib64/php') in /home/argos/argos3/doc/api/embedded/a00693_source.php on line 2
The ARGoS Website

radios_default_actuator.h
Go to the documentation of this file.
1 /*
2  * @file <argos3/plugins/robots/generic/simulator/radios_default_actuator.h>
3  *
4  * @author Michael Allwright - <allsey87@gmail.com>
5  */
6 
7 #ifndef RADIOS_DEFAULT_ACTUATOR_H
8 #define RADIOS_DEFAULT_ACTUATOR_H
9 
10 namespace argos {
11  class CRadiosDefaultActuator;
12 }
13 
14 #include <argos3/core/simulator/actuator.h>
15 #include <argos3/plugins/robots/generic/control_interface/ci_radios_actuator.h>
16 #include <argos3/plugins/simulator/entities/radio_equipped_entity.h>
17 
18 namespace argos {
19 
21  public CCI_RadiosActuator {
22 
23  public:
24 
26 
28 
29  virtual void SetRobot(CComposableEntity& c_entity);
30 
31  virtual void Init(TConfigurationNode& t_tree);
32 
33  virtual void Update();
34 
35  virtual void Reset();
36 
37  protected:
38 
40 
41  };
42 }
43 
44 #endif
The basic interface for a simulated actuator.
Definition: actuator.h:22
virtual void Update()
Updates the state of the entity associated to this actuator.
ticpp::Element TConfigurationNode
The ARGoS configuration XML node.
virtual void SetRobot(CComposableEntity &c_entity)
Sets the entity associated to this actuator.
CRadioEquippedEntity * m_pcRadioEquippedEntity
Basic class for an entity that contains other entities.
A container of CRadioEntity.
The namespace containing all the ARGoS related code.
Definition: ci_actuator.h:12
virtual void Reset()
Resets the actuator to the state it had just after Init().
virtual void Init(TConfigurationNode &t_tree)
Initializes the actuator from the XML configuration tree.