A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
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
27namespace ns3
28{
29
30/**
31 * \ingroup mobility
32 * \brief a (time, location) pair.
33 * \see attribute_Waypoint
34 */
36{
37 public:
38 /**
39 * \param waypointTime time of waypoint.
40 * \param waypointPosition position of waypoint corresponding to the given time.
41 *
42 * Create a waypoint.
43 */
44 Waypoint(const Time& waypointTime, const Vector& waypointPosition);
45
46 /**
47 * Create a waypoint at time 0 and position (0,0,0).
48 */
49 Waypoint();
50 /**
51 * \brief The waypoint time
52 */
54 /**
55 * \brief The position of the waypoint
56 */
57 Vector position;
58};
59
61
62std::ostream& operator<<(std::ostream& os, const Waypoint& waypoint);
63std::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
#define ATTRIBUTE_HELPER_HEADER(type)
Declare the attribute value, accessor and checkers for class type
Every class exported by the ns3 library is enclosed in the ns3 namespace.
std::ostream & operator<<(std::ostream &os, const Angles &a)
Definition: angles.cc:159
std::istream & operator>>(std::istream &is, Angles &a)
Definition: angles.cc:183