summaryrefslogtreecommitdiff
path: root/src/cam/options.h
diff options
context:
space:
mode:
authorNiklas Söderlund <niklas.soderlund@ragnatech.se>2019-01-28 01:12:06 +0100
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-02-01 11:41:53 +0200
commit0b2822749e14ce207734ded1aa16deeeeab6369c (patch)
tree87206710bc4c6e5c38dda68bda224f64878346b0 /src/cam/options.h
parent65ea2422d24a30736e457fdefe31956b4428ae0f (diff)
cam: options: Move enum OptionArgument
The enumeration of the different possibilities for arguments can be used by other parser then OptionsParser. Move it outside the class to make it ready to be used by other parsers. Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src/cam/options.h')
-rw-r--r--src/cam/options.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/cam/options.h b/src/cam/options.h
index f99ea730..491f6a31 100644
--- a/src/cam/options.h
+++ b/src/cam/options.h
@@ -11,15 +11,15 @@
#include <map>
#include <vector>
+enum OptionArgument {
+ ArgumentNone,
+ ArgumentRequired,
+ ArgumentOptional,
+};
+
class OptionsParser
{
public:
- enum OptionArgument {
- ArgumentNone,
- ArgumentRequired,
- ArgumentOptional,
- };
-
class Options {
public:
Options();