Skip to content
Snippets Groups Projects
Commit aec54746 authored by David Flitney's avatar David Flitney
Browse files

*** empty log message ***

parent bc85b911
No related branches found
No related tags found
No related merge requests found
#include "options.h" #include "options.h"
// $Id$
namespace Utilities { namespace Utilities {
void string_to_T(bool &b, const string& s) { void string_to_T(bool &b, const string& s) {
...@@ -21,4 +23,10 @@ namespace Utilities { ...@@ -21,4 +23,10 @@ namespace Utilities {
v = atof(s.c_str()); v = atof(s.c_str());
} }
ostream& operator<<(ostream &os, const BaseOption& o) {
return os <<
"\t" << o.key() <<
"\t" << o.help_text();
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment