00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef _CommandLine_h_included
00024 #define _CommandLine_h_included
00025
00026 #include <string>
00027 #include <vector>
00028
00029 #include "Options.h"
00030 #include "Types.h"
00031
00032 namespace CLI {
00033
00041 class CommandLine {
00042 public:
00043 CommandLine();
00045 CommandLine(const CommandLine& other);
00046 ~CommandLine();
00047
00049 CommandLine& operator=(const CommandLine& other);
00050
00055 std::vector<std::string> getArgs() const;
00056
00063 bool hasOption(const char option) const;
00064
00072 std::string getOptionValue(const char* const option) const;
00073
00077 const Options::Vector& operator()() const;
00078
00079 void addOption(const Option& sourceOption, int& index, const int argc, const char* argv[]);
00080 void addArg(const char* const arg);
00081
00082
00083 void addOption(const Option& sourceOption, Tokens::const_iterator& token, const Tokens::const_iterator& end);
00084 void addArg(const std::string& arg);
00085
00086 private:
00087 class Implementation;
00088 Implementation* impl_;
00089 };
00090
00091 }
00092
00093 #endif // #ifndef _CommandLine_h_included