summaryrefslogtreecommitdiff
path: root/src/cam/options.cpp
diff options
context:
space:
mode:
authorNiklas Söderlund <niklas.soderlund@ragnatech.se>2019-03-22 02:08:51 +0100
committerNiklas Söderlund <niklas.soderlund@ragnatech.se>2019-03-25 21:56:30 +0100
commitaf45435014aad8497fbb71d9be53ab3f890a22e4 (patch)
tree09f820dee8cc898037e137f389d5fc58706fb988 /src/cam/options.cpp
parent945478dbc0198fed27ce885d3ec33c95c77bc69f (diff)
cam: options: Create separate enum for OptionValue types
In preparation for support of multiple instances of the same option, create a separate enum for the OptionValue types as it will diverge from enum OptionType. Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src/cam/options.cpp')
-rw-r--r--src/cam/options.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/cam/options.cpp b/src/cam/options.cpp
index 655aa36b..49783339 100644
--- a/src/cam/options.cpp
+++ b/src/cam/options.cpp
@@ -248,27 +248,27 @@ void KeyValueParser::usage(int indent)
*/
OptionValue::OptionValue()
- : type_(OptionNone)
+ : type_(ValueNone)
{
}
OptionValue::OptionValue(int value)
- : type_(OptionInteger), integer_(value)
+ : type_(ValueInteger), integer_(value)
{
}
OptionValue::OptionValue(const char *value)
- : type_(OptionString), string_(value)
+ : type_(ValueString), string_(value)
{
}
OptionValue::OptionValue(const std::string &value)
- : type_(OptionString), string_(value)
+ : type_(ValueString), string_(value)
{
}
OptionValue::OptionValue(const KeyValueParser::Options &value)
- : type_(OptionKeyValue), keyValues_(value)
+ : type_(ValueKeyValue), keyValues_(value)
{
}
@@ -289,7 +289,7 @@ OptionValue::operator KeyValueParser::Options() const
int OptionValue::toInteger() const
{
- if (type_ != OptionInteger)
+ if (type_ != ValueInteger)
return 0;
return integer_;
@@ -297,7 +297,7 @@ int OptionValue::toInteger() const
std::string OptionValue::toString() const
{
- if (type_ != OptionString)
+ if (type_ != ValueString)
return std::string();
return string_;
@@ -305,7 +305,7 @@ std::string OptionValue::toString() const
KeyValueParser::Options OptionValue::toKeyValues() const
{
- if (type_ != OptionKeyValue)
+ if (type_ != ValueKeyValue)
return KeyValueParser::Options();
return keyValues_;