aboutsummaryrefslogtreecommitdiff
path: root/tests/ClassifierTestCaseData.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ClassifierTestCaseData.hpp')
-rw-r--r--tests/ClassifierTestCaseData.hpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/ClassifierTestCaseData.hpp b/tests/ClassifierTestCaseData.hpp
new file mode 100644
index 0000000000..6dbced28d6
--- /dev/null
+++ b/tests/ClassifierTestCaseData.hpp
@@ -0,0 +1,21 @@
+//
+// Copyright © 2017 Arm Ltd. All rights reserved.
+// See LICENSE file in the project root for full license information.
+//
+#pragma once
+
+#include <vector>
+
+template <typename DataType>
+class ClassifierTestCaseData
+{
+public:
+ ClassifierTestCaseData(unsigned int label, std::vector<DataType> inputImage)
+ : m_Label(label)
+ , m_InputImage(std::move(inputImage))
+ {
+ }
+
+ const unsigned int m_Label;
+ std::vector<DataType> m_InputImage;
+};