aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/ISubGraphConverter.hpp
blob: 1d40c6737ac6eaee3e1ae14f25bae53bef1ddcf4 (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 <memory>

namespace armnn
{

class ISubGraphConverter
{
public:
    virtual ~ISubGraphConverter() {};

    virtual std::shared_ptr<void> GetOutput() = 0;
};

}