blob: 0da2b5ce1b484be7d40c8053d7ff6bc490a60e0e [file] [log] [blame]
Brian Silverman26e4e522015-12-17 01:56:40 -05001/*----------------------------------------------------------------------------*/
Brian Silverman1a675112016-02-20 20:42:49 -05002/* Copyright (c) FIRST 2008-2016. All Rights Reserved. */
Brian Silverman26e4e522015-12-17 01:56:40 -05003/* Open Source Software - may be modified and shared by FRC teams. The code */
Brian Silverman1a675112016-02-20 20:42:49 -05004/* must be accompanied by the FIRST BSD license file in the root directory of */
5/* the project. */
Brian Silverman26e4e522015-12-17 01:56:40 -05006/*----------------------------------------------------------------------------*/
Brian Silverman1a675112016-02-20 20:42:49 -05007
Brian Silverman26e4e522015-12-17 01:56:40 -05008#pragma once
9
10class HLUsageReportingInterface {
11 public:
12 virtual ~HLUsageReportingInterface() = default;
13 virtual void ReportScheduler() = 0;
14 virtual void ReportSmartDashboard() = 0;
15};
16
17class HLUsageReporting {
18 private:
19 static HLUsageReportingInterface* impl;
20
21 public:
22 static void SetImplementation(HLUsageReportingInterface* i);
23 static void ReportScheduler();
24 static void ReportSmartDashboard();
25};