blob: 4fa25b70b38c314cc18f684378ed376583223f4c [file] [log] [blame]
//
// 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