aboutsummaryrefslogtreecommitdiff
path: root/tests/framework/command_line/EnumOption.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/framework/command_line/EnumOption.h')
-rw-r--r--tests/framework/command_line/EnumOption.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/framework/command_line/EnumOption.h b/tests/framework/command_line/EnumOption.h
index 1abba77b4b..14d61859ae 100644
--- a/tests/framework/command_line/EnumOption.h
+++ b/tests/framework/command_line/EnumOption.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017 ARM Limited.
+ * Copyright (c) 2017-2018 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -59,7 +59,12 @@ public:
bool parse(std::string value) override;
std::string help() const override;
- const T &value() const;
+
+ /** Get the selected value.
+ *
+ * @return get the selected enum value.
+ */
+ const T &value() const;
private:
std::set<T> _allowed_values{};