SockIt

Client.cpp

Go to the documentation of this file.
00001 /*
00002  * Client.cpp
00003  *
00004  *  Created on: Jun 10, 2011
00005  *      Author: jtedesco
00006  */
00007 
00008 #include "Client.h"
00009 
00010 Client::Client()
00011 {
00012     registerMethod("send", make_method(this, &Client::send));
00013     registerMethod("sendBytes", make_method(this, &Client::send_bytes));
00014     registerMethod("getHost", make_method(this, &Client::get_host));
00015     registerMethod("getPort", make_method(this, &Client::get_port));
00016 }
 All Classes Files Functions Variables Typedefs Friends Defines