WPILib 2012
WPILibRoboticsLibraryforFRC
|
00001 /*----------------------------------------------------------------------------*/ 00002 /* Copyright (c) FIRST 2011. All Rights Reserved. */ 00003 /* Open Source Software - may be modified and shared by FRC teams. The code */ 00004 /* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */ 00005 /*----------------------------------------------------------------------------*/ 00006 00007 #ifndef __SMART_DASHBOARD_DATA__ 00008 #define __SMART_DASHBOARD_DATA__ 00009 00010 #include <string> 00011 00012 class NetworkTable; 00013 00014 class SmartDashboardData 00015 { 00016 public: 00017 virtual std::string GetType() = 0; 00018 virtual NetworkTable *GetTable() = 0; 00019 }; 00020 00021 #endif