]> git.mxchange.org Git - flightgear.git/blobdiff - src/Traffic/TrafficMgr.hxx
Bugfix - untie property.
[flightgear.git] / src / Traffic / TrafficMgr.hxx
index 6c72ce95ceec1163e2ba0aa0ef578bc89b7e14c5..862c87be4dd23f65de232004e213d488d272cb19 100644 (file)
@@ -65,11 +65,11 @@ public:
    unsigned int hits;
 };
 
-typedef vector<Heuristic*> heuristicsVector;
-typedef vector<Heuristic*>::iterator heuristicsVectorIterator;
+typedef vector<Heuristic> heuristicsVector;
+typedef vector<Heuristic>::iterator heuristicsVectorIterator;
 
-typedef std::map < std::string, Heuristic *> HeuristicMap;
-typedef HeuristicMap::iterator               HeuristicMapIterator;
+typedef std::map < std::string, Heuristic> HeuristicMap;
+typedef HeuristicMap::iterator             HeuristicMapIterator;
 
 
 
@@ -93,8 +93,8 @@ private:
     
   FGScheduledFlightMap flights;
 
-  //void readTimeTableFromFile(SGPath infilename);
-  //void Tokenize(const string& str, vector<string>& tokens, const string& delimiters = " ");
+  void readTimeTableFromFile(SGPath infilename);
+  void Tokenize(const string& str, vector<string>& tokens, const string& delimiters = " ");
 
 public:
   FGTrafficManager();