00001 #ifndef NMWR_GB_COMMAND_LINE_H 00002 #define NMWR_GB_COMMAND_LINE_H 00003 00004 00005 00006 // $LICENSE 00007 00008 00009 #include <string> 00010 #include <strstream.h> 00011 00012 class Commandline { 00013 public: 00014 Commandline(int argc, char* argv[]); 00015 // istringstream get() const; 00016 //strstream get() const; 00017 const char* c_str() const; 00018 private: 00019 std::string commands; 00020 }; 00021 00022 00023 #endif