A Discrete-Event Network Simulator
API
hierarchical-mobility-model.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2007 INRIA
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation;
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16  *
17  * Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
18  */
19 #ifndef HIERARCHICAL_MOBILITY_MODEL_H
20 #define HIERARCHICAL_MOBILITY_MODEL_H
21 
22 #include "mobility-model.h"
23 
24 namespace ns3
25 {
26 
58 {
59  public:
64  static TypeId GetTypeId();
65 
67 
91  void SetChild(Ptr<MobilityModel> model);
100  void SetParent(Ptr<MobilityModel> model);
101 
102  private:
103  Vector DoGetPosition() const override;
104  void DoSetPosition(const Vector& position) override;
105  Vector DoGetVelocity() const override;
106  void DoInitialize() override;
107  int64_t DoAssignStreams(int64_t) override;
108 
119 
122 };
123 
124 } // namespace ns3
125 
126 #endif /* HIERARCHICAL_MOBILITY_MODEL_H */
Ptr< MobilityModel > m_child
pointer to child mobility model
void ChildChanged(Ptr< const MobilityModel > model)
Callback for when child mobility model course change occurs.
Ptr< MobilityModel > m_parent
pointer to parent mobility model
void DoSetPosition(const Vector &position) override
void SetParent(Ptr< MobilityModel > model)
Sets the parent mobility model to a new one, possibly replacing an existing one.
static TypeId GetTypeId()
Register this type with the TypeId system.
Ptr< MobilityModel > GetParent() const
void DoInitialize() override
Initialize() implementation.
void SetChild(Ptr< MobilityModel > model)
Sets the child mobility model to a new one, possibly replacing an existing one.
void ParentChanged(Ptr< const MobilityModel > model)
Callback for when parent mobility model course change occurs.
int64_t DoAssignStreams(int64_t) override
The default implementation does nothing but return the passed-in parameter.
Keep track of the current position and velocity of an object.
a unique identifier for an interface.
Definition: type-id.h:59
Every class exported by the ns3 library is enclosed in the ns3 namespace.