#ifndef OPTIONSENGINELITTLE_H #define OPTIONSENGINELITTLE_H #include "../interface/OptionInterface.h" #include #include #include #include class OptionsEngineLittle : public OptionInterface { public: OptionsEngineLittle(); /// \brief To add option group to options bool addOptionGroup(const std::vector > &KeysList); /// \brief To get option value std::string getOptionValue(const std::string &variableName) const; /// \brief To set option value void setOptionValue(const std::string &variableName,const std::string &value); private: std::unordered_map options; }; #endif // OPTIONSENGINELITTLE_H