WPILib 2012
WPILibRoboticsLibraryforFRC
DashboardBase.h
00001 /*----------------------------------------------------------------------------*/
00002 /* Copyright (c) FIRST 2008. 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 __DASHBOARDBASE_H__
00008 #define __DASHBOARDBASE_H__
00009 
00010 #include <vxWorks.h>
00011 #include "ErrorBase.h"
00012 
00013 class DashboardBase : public ErrorBase {
00014 public:
00015         virtual void GetStatusBuffer(char** userStatusData, INT32* userStatusDataSize) = 0;
00016         virtual void Flush() = 0;
00017         virtual ~DashboardBase() {}
00018 protected:
00019         DashboardBase() {}
00020 private:
00021         DISALLOW_COPY_AND_ASSIGN(DashboardBase);
00022 };
00023 
00024 #endif
 All Classes Functions Variables