Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members

CTCPSocketFactory.cpp

00001 /*
00002  * synergy -- mouse and keyboard sharing utility
00003  * Copyright (C) 2002 Chris Schoeneman
00004  * 
00005  * This package is free software; you can redistribute it and/or
00006  * modify it under the terms of the GNU General Public License
00007  * found in the file COPYING that should have accompanied this file.
00008  * 
00009  * This package is distributed in the hope that it will be useful,
00010  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012  * GNU General Public License for more details.
00013  */
00014 
00015 #include "CTCPSocketFactory.h"
00016 #include "CTCPSocket.h"
00017 #include "CTCPListenSocket.h"
00018 
00019 //
00020 // CTCPSocketFactory
00021 //
00022 
00023 CTCPSocketFactory::CTCPSocketFactory()
00024 {
00025     // do nothing
00026 }
00027 
00028 CTCPSocketFactory::~CTCPSocketFactory()
00029 {
00030     // do nothing
00031 }
00032 
00033 IDataSocket*
00034 CTCPSocketFactory::create() const
00035 {
00036     return new CTCPSocket;
00037 }
00038 
00039 IListenSocket*
00040 CTCPSocketFactory::createListen() const
00041 {
00042     return new CTCPListenSocket;
00043 }

Generated on Fri Nov 6 00:21:14 2009 for synergy-plus by  doxygen 1.3.9.1