Parasol Planning Library (PPL)
PrintMapEvaluation.h
Go to the documentation of this file.
1 #ifndef PRINT_MAP_EVALUATION_H
2 #define PRINT_MAP_EVALUATION_H
3 
4 #include "MapEvaluatorMethod.h"
5 
11 
12  public:
13 
16 
19  PrintMapEvaluation(string _baseName);
20 
24 
25  virtual ~PrintMapEvaluation();
26 
27  virtual void Print(ostream& _os) const;
28 
29  virtual bool operator()();
30 
31  protected:
32 
33  string m_baseName;
34 };
35 
36 #endif
Definition: MapEvaluatorMethod.h:16
Definition: PrintMapEvaluation.h:10
virtual ~PrintMapEvaluation()
Definition: PrintMapEvaluation.cpp:26
string m_baseName
The basename of the file to write.
Definition: PrintMapEvaluation.h:33
PrintMapEvaluation()
Constructs a PrintMapEvaluation object.
Definition: PrintMapEvaluation.cpp:5
virtual void Print(ostream &_os) const
Definition: PrintMapEvaluation.cpp:31
virtual bool operator()()
Write the map to a file.
Definition: PrintMapEvaluation.cpp:39
Definition: XMLNode.h:27