blob: 93df9d2541025e414f2733a874cb0ae204730790 [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