searchmove.h
Go to the documentation of this file.
1 #ifndef SEARCHMOVE_H
2 #define SEARCHMOVE_H
3 
4 #include <iostream>
5 
6 class SearchMove
7 {
8 public:
9  double V, W, DeltaT;
10 
12 
13  SearchMove(double v, double w, double dt);
14 
15  bool operator == (const SearchMove &other);
16 
17  friend std::ostream &operator << (std::ostream &stream, SearchMove &move)
18  {
19  stream << "(<" << move.V << "," << move.W << ">";
20  return stream;
21  }
22 };
23 
24 #endif // SEARCHMOVE_H
bool operator==(const SearchMove &other)
Definition: searchmove.cpp:10
double V
Definition: searchmove.h:9
double DeltaT
Definition: searchmove.h:9
friend std::ostream & operator<<(std::ostream &stream, SearchMove &move)
Definition: searchmove.h:17
double W
Definition: searchmove.h:9


igvc
Author(s): Matthew Barulic , Al Chaussee
autogenerated on Sun May 10 2015 16:18:45