00001
00002
00003 #ifndef NMWR_GB_COMMAND_LINE_H
00004 #define NMWR_GB_COMMAND_LINE_H
00005
00006
00012 #include <string>
00013
00014 class Commandline {
00015 public:
00016 Commandline(int argc, char* argv[]);
00017 std::string get() const;
00018 const char* c_str() const;
00019 private:
00020 std::string commands;
00021 };
00022
00023
00024 #endif