COMPMID-1246 - Enabled NHWC on graph_mobilenet by default

Change-Id: I195d4a0e6fee4cd4ca42403256a9fe639b83fa3d
Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/138925
Tested-by: Jenkins <bsgcomp@arm.com>
Reviewed-by: Giorgio Arena <giorgio.arena@arm.com>
diff --git a/utils/CommonGraphOptions.h b/utils/CommonGraphOptions.h
index ef2e4fb..b429a18 100644
--- a/utils/CommonGraphOptions.h
+++ b/utils/CommonGraphOptions.h
@@ -79,10 +79,16 @@
      * @param[in,out] parser A parser on which "parse()" hasn't been called yet.
      */
     CommonGraphOptions(CommandLineParser &parser);
-    /** Prevent instances of this class from being copy constructed */
+    /** Prevent instances of this class from being copied (As this class contains pointers) */
     CommonGraphOptions(const CommonGraphOptions &) = delete;
-    /** Prevent instances of this class from being copied */
+    /** Prevent instances of this class from being copied (As this class contains pointers) */
     CommonGraphOptions &operator=(const CommonGraphOptions &) = delete;
+    /** Allow instances of this class to be moved */
+    CommonGraphOptions(CommonGraphOptions &&) = default;
+    /** Allow instances of this class to be moved */
+    CommonGraphOptions &operator=(CommonGraphOptions &&) = default;
+    /** Default destructor */
+    ~CommonGraphOptions() = default;
 
     ToggleOption                           *help;             /**< Show help option */
     SimpleOption<int>                      *threads;          /**< Number of threads option */