home *** CD-ROM | disk | FTP | other *** search
- /*******************************************************************************
- * FILE NAME: iobservr.c *
- * *
- * DESCRIPTION: *
- * This file contains the definition of the template functions *
- * declared in iobservr.hpp. *
- * *
- * COPYRIGHT: *
- * IBM Open Class Library *
- * (C) Copyright International Business Machines Corporation 1992, 1996 *
- * Licensed Material - Program-Property of IBM - All Rights Reserved. *
- * US Government Users Restricted Rights - Use, duplication, or disclosure *
- * restricted by GSA ADP Schedule Contract with IBM Corp. *
- * *
- *******************************************************************************/
- #include <iobservr.hpp>
-
- template<class ATarget>
- IObserverConnectionTo<ATarget>::~IObserverConnectionTo()
- {
- }
-
- template<class ATarget>
- IObserverConnectionTo<ATarget>&
- IObserverConnectionTo<ATarget>::dispatchNotificationEvent(
- const INotificationEvent& event)
- {
- ( fTarget.*fConnectedMember ) ( event );
- return *this;
- }
-