ARGoS
Large-scale robot simulations
home
about
download
documentation
examples
user manual
dev manual
API
forum
publications
plugins
simulator
entities
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
15
CWiFiEquippedEntity::CWiFiEquippedEntity
(
CComposableEntity
* pc_parent) :
16
CEntity
(pc_parent) {
17
Disable
();
18
}
19
20
/****************************************/
21
/****************************************/
22
23
CWiFiEquippedEntity::CWiFiEquippedEntity
(
CComposableEntity
* pc_parent,
24
const
std::string& str_id) :
25
CEntity
(pc_parent, str_id) {
26
Disable
();
27
}
28
29
/****************************************/
30
/****************************************/
31
32
REGISTER_STANDARD_SPACE_OPERATIONS_ON_ENTITY
(
CWiFiEquippedEntity
);
33
34
/****************************************/
35
/****************************************/
36
37
}
wifi_equipped_entity.h
argos
The namespace containing all the ARGoS related code.
Definition:
ci_actuator.h:12
argos::REGISTER_STANDARD_SPACE_OPERATIONS_ON_ENTITY
REGISTER_STANDARD_SPACE_OPERATIONS_ON_ENTITY(CEntity)
argos::CComposableEntity
Basic class for an entity that contains other entities.
Definition:
composable_entity.h:32
argos::CEntity
The basic entity type.
Definition:
entity.h:90
argos::CEntity::Disable
void Disable()
Disables the entity.
Definition:
entity.h:275
argos::CWiFiEquippedEntity
Definition:
wifi_equipped_entity.h:15
argos::CWiFiEquippedEntity::CWiFiEquippedEntity
CWiFiEquippedEntity(CComposableEntity *pc_parent)
Definition:
wifi_equipped_entity.cpp:15