| /*----------------------------------------------------------------------------*/ |
| /* Copyright (c) FIRST 2008. All Rights Reserved. */ |
| /* Open Source Software - may be modified and shared by FRC teams. The code */ |
| /* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */ |
| /*----------------------------------------------------------------------------*/ |
| |
| #ifndef __DASHBOARDBASE_H__ |
| #define __DASHBOARDBASE_H__ |
| |
| #include <vxWorks.h> |
| #include "ErrorBase.h" |
| |
| class DashboardBase : public ErrorBase { |
| public: |
| virtual void GetStatusBuffer(char** userStatusData, INT32* userStatusDataSize) = 0; |
| virtual void Flush() = 0; |
| virtual ~DashboardBase() {} |
| protected: |
| DashboardBase() {} |
| private: |
| DISALLOW_COPY_AND_ASSIGN(DashboardBase); |
| }; |
| |
| #endif |