aboutsummaryrefslogtreecommitdiff
path: root/profiling/client/src/INotifyBackends.hpp
blob: 4fa25b70b38c314cc18f684378ed376583223f4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// Copyright © 2020 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

namespace arm
{

namespace pipe
{

class INotifyBackends
{
public:
    virtual ~INotifyBackends() {}
    virtual void NotifyBackendsForTimelineReporting() = 0;
};

} // namespace pipe

} // namespace arm