00001 #include "tables.H" 00002 #include <string> 00003 #include <map> 00004 using namespace std; 00005 00006 00007 00008 00009 class CommandLine { 00010 public: 00011 static bool empty; 00012 static string exec_file; 00013 static Tuple<string> parameters; 00014 static map< string, Tuple<string> > tags; 00015 00016 static void init(int argc, char** argv); 00017 static bool has_tag(string thetag); 00018 00019 };