blob: 45d4aac08837b46f6ab20d1b84f3326f1c065b8a [file] [log] [blame]
Jim Flynn6398a982020-05-27 17:05:21 +01001//
2// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include <Packet.hpp>
9#include <armnn/profiling/ILocalPacketHandler.hpp>
10
11#include <cstdint>
12
13namespace armnn
14{
15
16namespace profiling
17{
18
19class IProfilingServiceStatus
20{
21public:
22 virtual void NotifyProfilingServiceActive() = 0;
23 virtual void WaitForProfilingServiceActivation(unsigned int timeout) = 0;
24 virtual ~IProfilingServiceStatus() {};
25};
26
27} // namespace profiling
28
29} // namespace armnn