blob: edc034d20ee0a12c25566aa86c807c915eee7481 [file] [log] [blame]
//
// Copyright © 2019 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
namespace armnn
{
namespace profiling
{
class IPeriodicCounterCapture
{
public:
virtual void Start() = 0;
virtual ~IPeriodicCounterCapture() {}
};
} // namespace profiling
} // namespace armnn