WPILib 2012
WPILibRoboticsLibraryforFRC
NetworkTables/TransactionStart.h
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 __TRANSACTION_START_H__
00008 #define __TRANSACTION_START_H__
00009 
00010 #include "NetworkTables/Data.h"
00011 
00012 namespace NetworkTables
00013 {
00014 
00015 class Buffer;
00016 
00017 class TransactionStart : public Data
00018 {
00019 public:
00020         virtual void Encode(Buffer *buffer);
00021         virtual bool IsTransaction() {return true;}
00022 };
00023 
00024 } // namespace
00025 
00026 #endif // __TRANSACTION_START_H__
 All Classes Functions Variables