Now you can download a copy of these docs so you can use them offline! Download now
IRemote.h
1 /*
2  * IRemote.h
3  *
4  * Created on: Sep 22, 2012
5  * Author: Mitchell Wills
6  */
7 
8 #ifndef IREMOTE_H_
9 #define IREMOTE_H_
10 
11 class IRemote;
12 
13 
14 #include "tables/IRemoteConnectionListener.h"
15 
16 
17 
24 class IRemote {
25 public:
32  virtual void AddConnectionListener(IRemoteConnectionListener* listener, bool immediateNotify) = 0;
33 
39  virtual void RemoveConnectionListener(IRemoteConnectionListener* listener) = 0;
40 
45  virtual bool IsConnected() = 0;
46 
51  virtual bool IsServer() = 0;
52 };
53 
54 
55 #endif /* IREMOTE_H_ */
virtual void RemoveConnectionListener(IRemoteConnectionListener *listener)=0
virtual void AddConnectionListener(IRemoteConnectionListener *listener, bool immediateNotify)=0
virtual bool IsServer()=0
virtual bool IsConnected()=0

Generated on Sat Apr 26 2014 12:26:45 for WPILibC++ by doxygen 1.8.6