A Discrete-Event Network Simulator
API
mobility-building-info.h
Go to the documentation of this file.
1 /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2011 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC)
4  *
5  * This program 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  * This program is distributed in the hope that it will be useful,
10  * but 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, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Marco Miozzo <marco.miozzo@cttc.es>
19  *
20  */
21 #ifndef MOBILITY_BUILDING_INFO_H
22 #define MOBILITY_BUILDING_INFO_H
23 
24 
25 
26 #include <ns3/simple-ref-count.h>
27 #include <ns3/ptr.h>
28 #include <ns3/object.h>
29 #include <ns3/box.h>
30 #include <map>
31 #include <ns3/building.h>
32 #include <ns3/constant-velocity-helper.h>
33 
34 
35 
36 namespace ns3 {
37 
38 
48 {
49 public:
50  static TypeId GetTypeId (void);
52 
54 
59  bool IsIndoor (void);
60 
65  bool IsOutdoor (void);
66 
75  void SetIndoor (Ptr<Building> building, uint8_t nfloor, uint8_t nroomx, uint8_t nroomy);
76 
77 
78  void SetIndoor (uint8_t nfloor, uint8_t nroomx, uint8_t nroomy);
79 
84  void SetOutdoor ();
85 
90  uint8_t GetFloorNumber (void);
91 
96  uint8_t GetRoomNumberX (void);
97 
102  uint8_t GetRoomNumberY (void);
103 
109 
110 
111 
112 private:
113 
115  bool m_indoor;
116  uint8_t m_nFloor;
117  uint8_t m_roomX;
118  uint8_t m_roomY;
119 
120 };
121 
122 
123 
124 } // namespace ns3
125 
126 
127 #endif // MOBILITY_BUILDING_INFO_H
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
void SetOutdoor()
Mark this MobilityBuildingInfo instance as outdoor.
void SetIndoor(Ptr< Building > building, uint8_t nfloor, uint8_t nroomx, uint8_t nroomy)
Mark this MobilityBuildingInfo instance as indoor.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
mobility buildings information (to be used by mobility models)
A base class which provides memory management and object aggregation.
Definition: object.h:87
a unique identifier for an interface.
Definition: type-id.h:58