SockIt

Server.cpp

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