aboutsummaryrefslogtreecommitdiff
path: root/tests/ClassifierTestCaseData.hpp
blob: 6dbced28d6df22d3cbead3b6e6e8b9a86f0470c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
};