A Discrete-Event Network Simulator
API
waypoint.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2009 Phillip Sitbon
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: Phillip Sitbon <phillip@sitbon.net>
18  */
19 #ifndef WAYPOINT_H
20 #define WAYPOINT_H
21 
22 #include "ns3/attribute-helper.h"
23 #include "ns3/attribute.h"
24 #include "ns3/nstime.h"
25 #include "ns3/vector.h"
26 
27 namespace ns3
28 {
29 
35 class Waypoint
36 {
37  public:
44  Waypoint(const Time& waypointTime, const Vector& waypointPosition);
45 
49  Waypoint();
57  Vector position;
58 };
59 
61 
62 std::ostream& operator<<(std::ostream& os, const Waypoint& waypoint);
63 std::istream& operator>>(std::istream& is, Waypoint& waypoint);
64 
65 } // namespace ns3
66 
67 #endif /* WAYPOINT_H */
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:105
a (time, location) pair.
Definition: waypoint.h:36
Waypoint()
Create a waypoint at time 0 and position (0,0,0).
Definition: waypoint.cc:32
Time time
The waypoint time.
Definition: waypoint.h:53
Vector position
The position of the waypoint.
Definition: waypoint.h:57
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ATTRIBUTE_HELPER_HEADER(ValueClassTest)
std::istream & operator>>(std::istream &is, Angles &a)
Definition: angles.cc:183
std::ostream & operator<<(std::ostream &os, const Angles &a)
Definition: angles.cc:159