blob: 6dbced28d6df22d3cbead3b6e6e8b9a86f0470c7 [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// See LICENSE file in the project root for full license information.
4//
5#pragma once
6
7#include <vector>
8
9template <typename DataType>
10class ClassifierTestCaseData
11{
12public:
13 ClassifierTestCaseData(unsigned int label, std::vector<DataType> inputImage)
14 : m_Label(label)
15 , m_InputImage(std::move(inputImage))
16 {
17 }
18
19 const unsigned int m_Label;
20 std::vector<DataType> m_InputImage;
21};