blob: 5d8d34ffdab44cfa8f661108bb0fc88824bc23f4 [file] [log] [blame]
Brian Silverman26e4e522015-12-17 01:56:40 -05001/*----------------------------------------------------------------------------*/
2/* Copyright (c) FIRST 2008. All Rights Reserved. */
3/* Open Source Software - may be modified and shared by FRC teams. The code */
4/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
5/*----------------------------------------------------------------------------*/
6#pragma once
7
8class HLUsageReportingInterface {
9 public:
10 virtual ~HLUsageReportingInterface() = default;
11 virtual void ReportScheduler() = 0;
12 virtual void ReportSmartDashboard() = 0;
13};
14
15class HLUsageReporting {
16 private:
17 static HLUsageReportingInterface* impl;
18
19 public:
20 static void SetImplementation(HLUsageReportingInterface* i);
21 static void ReportScheduler();
22 static void ReportSmartDashboard();
23};