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