blob: bcbc6b6a34d4da7e4a6882abc83df2d2783d4fa9 [file] [log] [blame]
Brian Silverman26e4e522015-12-17 01:56:40 -05001
2#include "HLUsageReporting.h"
3
4HLUsageReportingInterface* HLUsageReporting::impl = nullptr;
5
6void HLUsageReporting::SetImplementation(HLUsageReportingInterface* i) {
7 impl = i;
8}
9
10void HLUsageReporting::ReportScheduler() {
11 if (impl != nullptr) {
12 impl->ReportScheduler();
13 }
14}
15
16void HLUsageReporting::ReportSmartDashboard() {
17 if (impl != nullptr) {
18 impl->ReportSmartDashboard();
19 }
20}