WPILibC++  trunk
SocketStreamFactory.h
1 /*
2  * SocketStreamFactory.h
3  *
4  * Created on: Nov 3, 2012
5  * Author: Mitchell Wills
6  */
7 
8 #ifndef SOCKETSTREAMFACTORY_H_
9 #define SOCKETSTREAMFACTORY_H_
10 
12 
13 #include "networktables2/stream/IOStreamFactory.h"
14 #include <string>
15 
22 private:
23  const char* host;
24  const int port;
25 
26 public:
27  SocketStreamFactory(const char* host, int port);
28  virtual ~SocketStreamFactory();
29 
31 
32 };
33 
34 
35 
36 #endif /* SOCKETSTREAMFACTORY_H_ */