blob: d073d1286859d71d70e51c9b60e56eac1a0b5413 [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include <armnn/IRuntime.hpp>
#include <memory>
namespace armnn
{
class IBackendContext
{
public:
virtual ~IBackendContext() {}
protected:
IBackendContext(const IRuntime::CreationOptions& options) {}
private:
IBackendContext() = delete;
};
using IBackendContextUniquePtr = std::unique_ptr<IBackendContext>;
} // namespace armnn