ARGoS  3
A parallel, multi-engine simulator for swarm robotics
wifi_equipped_entity.cpp
Go to the documentation of this file.
1 
7 #include "wifi_equipped_entity.h"
8 #include <argos3/core/simulator/space/space.h>
9 
10 namespace argos {
11 
12  /****************************************/
13  /****************************************/
14 
16  CEntity(pc_parent) {
17  Disable();
18  }
19 
20  /****************************************/
21  /****************************************/
22 
24  const std::string& str_id) :
25  CEntity(pc_parent, str_id) {
26  Disable();
27  }
28 
29  /****************************************/
30  /****************************************/
31 
33 
34  /****************************************/
35  /****************************************/
36 
37 }
argos
The namespace containing all the ARGoS related code.
Definition: ci_actuator.h:12
argos::CComposableEntity
Basic class for an entity that contains other entities.
Definition: composable_entity.h:32
argos::REGISTER_STANDARD_SPACE_OPERATIONS_ON_ENTITY
REGISTER_STANDARD_SPACE_OPERATIONS_ON_ENTITY(CEntity)
wifi_equipped_entity.h
argos::CEntity
The basic entity type.
Definition: entity.h:89
argos::CWiFiEquippedEntity
Definition: wifi_equipped_entity.h:15
argos::CEntity::Disable
void Disable()
Disables the entity.
Definition: entity.h:249
argos::CWiFiEquippedEntity::CWiFiEquippedEntity
CWiFiEquippedEntity(CComposableEntity *pc_parent)
Definition: wifi_equipped_entity.cpp:15