mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
21 lines
399 B
C++
21 lines
399 B
C++
|
|
#include "HLUsageReporting.h"
|
|
|
|
HLUsageReportingInterface* HLUsageReporting::impl = 0;
|
|
|
|
void HLUsageReporting::SetImplementation(HLUsageReportingInterface* i) {
|
|
impl = i;
|
|
}
|
|
|
|
void HLUsageReporting::ReportScheduler() {
|
|
if (impl != 0) {
|
|
impl->ReportScheduler();
|
|
}
|
|
}
|
|
|
|
void HLUsageReporting::ReportSmartDashboard() {
|
|
if (impl != 0) {
|
|
impl->ReportSmartDashboard();
|
|
}
|
|
}
|