00001 /* 00002 * Copyright (C) 1991-9 Eric M. Hopper <hopper@omnifarious.mn.org> 00003 * 00004 * This program is free software; you can redistribute it and/or modify it 00005 * under the terms of the GNU Lesser General Public License as published 00006 * by the Free Software Foundation; either version 2 of the License, or 00007 * (at your option) any later version. 00008 * 00009 * This program is distributed in the hope that it will be useful, but 00010 * WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * Lesser General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Lesser General Public 00015 * License along with this program; if not, write to the Free Software 00016 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00017 */ 00018 00019 /* $Header: /home/hopper/src/cvs/C++/UniEvent/EventPtr.cxx,v 1.3 2001/09/04 13:18:31 hopper Exp $ */ 00020 00021 // For a log, see ChangeLog 00022 // 00023 // Revision 1.1 1997/05/13 01:03:25 hopper 00024 // Added new EventPtr classes to maintain reference count on UNIEvent classes. 00025 // 00026 00027 #ifdef __GNUG__ 00028 # pragma implementation "EventPtr.h" 00029 #endif 00030 00031 #include <UniEvent/EventPtr.h> 00032 00033 #ifdef __GNUG__ 00034 # pragma implementation "EventPtrT.h" 00035 #endif 00036 00037 #include <UniEvent/EventPtrT.h> 00038 00039 namespace strmod { 00040 namespace unievent { 00041 00042 const UNEVT_ClassIdent EventPtr::identifier(5UL); 00043 00044 }; // namespace unievent 00045 }; // namespace strmod
1.3-rc1