00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef _Options_h_included
00024 #define _Options_h_included
00025
00026 #include <string>
00027 #include <vector>
00028
00029 #include "Option.h"
00030
00031 namespace CLI {
00032
00045 class Options {
00046 public:
00047 typedef std::vector<Option> Vector;
00048
00049 Options();
00050
00051 Options(const Options&);
00052 Options& operator=(const Options&);
00053
00054 ~Options();
00055
00059 void addOption(const Option& option);
00060
00070 void addOption(const char* const option, const bool hasArg, const char* const usage);
00071
00072 void addOption(const char* const option, const char* const longOption, const bool hasArg, const char* const usage);
00073
00074 bool hasOption(const char* const which) const;
00075 const Option& getOption(const char* const which) const;
00076 std::string toString() const;
00077 const Vector& operator()() const;
00078
00079 private:
00080 class Implementation;
00081 Implementation* impl_;
00082 };
00083
00084 }
00085
00086 #endif // #ifndef _Options_h_included