Files
allwpilib/wpilibc/wpilibC++/src/HLUsageReporting.cpp

21 lines
381 B
C++
Raw Normal View History

#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();
}
}