Now you can download a copy of these docs so you can use them offline! Download now
OldData.cpp
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 #include "NetworkTables/OldData.h" 00008 #include "NetworkTables/Buffer.h" 00009 #include "NetworkTables/Entry.h" 00010 00011 namespace NetworkTables 00012 { 00013 00014 OldData::OldData(Entry *entry) : 00015 m_entry(entry) 00016 { 00017 } 00018 00019 void OldData::Encode(Buffer *buffer) 00020 { 00021 buffer->WriteByte(kNetworkTables_OLD_DATA); 00022 m_entry->Encode(buffer); 00023 } 00024 00025 } // namespace
Generated on Thu Jan 12 2012 22:35:22 for WPILibC++ by
1.7.1