diff options
Diffstat (limited to 'src/cam/options.cpp')
-rw-r--r-- | src/cam/options.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/cam/options.cpp b/src/cam/options.cpp index 49783339..556e7623 100644 --- a/src/cam/options.cpp +++ b/src/cam/options.cpp @@ -5,6 +5,7 @@ * options.cpp - cam - Options parsing */ +#include <cassert> #include <getopt.h> #include <iomanip> #include <iostream> @@ -272,6 +273,14 @@ OptionValue::OptionValue(const KeyValueParser::Options &value) { } +void OptionValue::addValue(const OptionValue &value) +{ + assert(type_ == ValueNone || type_ == ValueArray); + + type_ = ValueArray; + array_.push_back(value); +} + OptionValue::operator int() const { return toInteger(); @@ -287,6 +296,11 @@ OptionValue::operator KeyValueParser::Options() const return toKeyValues(); } +OptionValue::operator std::vector<OptionValue>() const +{ + return toArray(); +} + int OptionValue::toInteger() const { if (type_ != ValueInteger) @@ -311,6 +325,14 @@ KeyValueParser::Options OptionValue::toKeyValues() const return keyValues_; } +std::vector<OptionValue> OptionValue::toArray() const +{ + if (type_ != ValueArray) + return std::vector<OptionValue>{}; + + return array_; +} + /* ----------------------------------------------------------------------------- * OptionsParser */ |