WPILib 2012
WPILibRoboticsLibraryforFRC
NetworkTables/NetworkTableConnectionListener.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 __NETWORK_TABLE_CONNECTION_LISTENER_H__
00008 #define __NETWORK_TABLE_CONNECTION_LISTENER_H__
00009 
00010 class NetworkTable;
00011 
00012 class NetworkTableConnectionListener {
00013 public:
00014         virtual void Connected(NetworkTable *table) = 0;
00015         virtual void Disconnected(NetworkTable *table) = 0;
00016 };
00017 
00018 #endif // __NETWORK_TABLE_CONNECTION_LISTENER_H__
 All Classes Functions Variables