blob: 1d272463aee5a121659e37182ceca42e52197cfb [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
Jim Flynn6398a982020-05-27 17:05:21 +01008#include <armnn/profiling/ILocalPacketHandler.hpp>
9
Nikhil Raj7dcc6972021-04-30 15:44:24 +010010#include <common/include/Packet.hpp>
11
Jim Flynn6398a982020-05-27 17:05:21 +010012#include <cstdint>
13
14namespace armnn
15{
16
17namespace profiling
18{
19
20class IProfilingServiceStatus
21{
22public:
23 virtual void NotifyProfilingServiceActive() = 0;
24 virtual void WaitForProfilingServiceActivation(unsigned int timeout) = 0;
25 virtual ~IProfilingServiceStatus() {};
26};
27
28} // namespace profiling
29
30} // namespace armnn