[asycxx-devel] SF.net SVN: asycxx:[28] trunk
Status: Alpha
Brought to you by:
joe_steeve
From: <joe...@us...> - 2009-04-08 07:32:12
|
Revision: 28 http://asycxx.svn.sourceforge.net/asycxx/?rev=28&view=rev Author: joe_steeve Date: 2009-04-08 07:32:11 +0000 (Wed, 08 Apr 2009) Log Message: ----------- moved one-liners in Listener.cxx to Listener.h * moved class:Listeners to 'asycxx' namespace From: Joe Steeve <js...@hi...> Modified Paths: -------------- trunk/include/asycxx/Listener.h Removed Paths: ------------- trunk/src/Listener.cxx Modified: trunk/include/asycxx/Listener.h =================================================================== --- trunk/include/asycxx/Listener.h 2009-04-08 07:31:24 UTC (rev 27) +++ trunk/include/asycxx/Listener.h 2009-04-08 07:32:11 UTC (rev 28) @@ -16,16 +16,18 @@ #include "Error.h" #include "Reactor.h" +#include "Selectable.h" -class Listener +namespace asycxx { - -public: - Listener (); - virtual ~Listener (); + class Listener : public Selectable + { + public: + Listener () {} + virtual ~Listener () {} + }; +} -}; - #endif /* __HIPRO_ASYCXX__LISTENER_H__ */ /* Deleted: trunk/src/Listener.cxx =================================================================== --- trunk/src/Listener.cxx 2009-04-08 07:31:24 UTC (rev 27) +++ trunk/src/Listener.cxx 2009-04-08 07:32:11 UTC (rev 28) @@ -1,41 +0,0 @@ - -/******************************************************************** - * Copyright (C) 2008,2009 HiPro IT Solutions Pvt. Ltd., Chennai. All - * rights reserved. - * - * This program and the accompanying materials are made available - * under the terms described in the LICENSE file which accompanies - * this distribution. If the LICENSE file was not attached to this - * distribution or for further clarifications, please contact - * le...@hi.... - * - *******************************************************************/ - -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif - - -#include "asycxx-common.h" -#include <asycxx/Error.h> -#include <asycxx/Listener.h> - - -Listener::Listener () -{ - -} - -Listener::~Listener () -{ - -} - -/* - Local Variables: - mode: c++ - indent-tabs-mode: nil - tab-width: 4 - c-file-style: "gnu" - End: -*/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |