Enhancement

- Added ostream converter for Path object.
This commit is contained in:
Paul Beckingham 2012-06-02 12:52:13 -04:00
parent b63bd9e985
commit 65e8cc63fc
2 changed files with 10 additions and 0 deletions

View file

@ -29,6 +29,7 @@
#define INCLUDED_PATH
#define L10N // Localization complete.
#include <iostream>
#include <vector>
#include <string>
@ -62,5 +63,7 @@ public:
std::string _data;
};
std::ostream& operator<< (std::ostream&, const Path&);
#endif
////////////////////////////////////////////////////////////////////////////////