// // C++ Interface: windowscedevicefactory // // Description: // // // Author: Volker Christian , (C) 2006 // // Copyright: See COPYING file that comes with this distribution // // #ifndef WINDOWSCEDEVICEFACTORY_H #define WINDOWSCEDEVICEFACTORY_H #include /** @author Volker Christian */ class WindowsCEDeviceFactory : public TCPAcceptedSocketFactory { public: WindowsCEDeviceFactory(); ~WindowsCEDeviceFactory(); virtual TCPAcceptedSocket* socket(int fd, TCPServerSocket *serverSocket) const; }; #endif