aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/IBackend.hpp
blob: 34df91c8038540825b114cb5e9d5a8988be7f7c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once

#include "BackendId.hpp"

namespace armnn
{

class IBackend
{
protected:
    IBackend() {}
    virtual ~IBackend() {}

public:
    virtual const BackendId& GetId() const = 0;
};

} // namespace armnn