2016-01-02 03:02:34 -08:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2018-01-02 09:20:21 -08:00
|
|
|
/* Copyright (c) 2016-2018 FIRST. All Rights Reserved. */
|
2016-01-02 03:02:34 -08:00
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
|
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
|
|
|
/* the project. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
2014-08-08 17:05:49 -04:00
|
|
|
|
2016-09-05 13:55:31 -07:00
|
|
|
#pragma once
|
|
|
|
|
|
2014-08-08 17:05:49 -04:00
|
|
|
#include "HLUsageReporting.h"
|
|
|
|
|
|
2016-11-01 22:33:12 -07:00
|
|
|
namespace frc {
|
|
|
|
|
|
2015-06-25 15:07:55 -04:00
|
|
|
class HardwareHLReporting : public HLUsageReportingInterface {
|
|
|
|
|
public:
|
|
|
|
|
virtual void ReportScheduler();
|
|
|
|
|
virtual void ReportSmartDashboard();
|
2014-08-08 17:05:49 -04:00
|
|
|
};
|
2016-11-01 22:33:12 -07:00
|
|
|
|
|
|
|
|
} // namespace frc
|