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++/StrMod/StreamProcessor.cxx,v 1.4 2001/09/23 22:40:42 hopper Exp $ */ 00020 00021 // See Changelog for a log of changes. 00022 // 00023 // Revision 1.1 1996/09/02 23:33:39 hopper 00024 // Created abstract class (class StreamProcessor) for handling simple 00025 // dataflows where one grabbed incoming data, did stuff to it, and sent 00026 // the result along. 00027 // 00028 00029 #ifdef __GNUG__ 00030 # pragma implementation "StreamProcessor.h" 00031 #endif 00032 00033 #include "StrMod/StreamProcessor.h" 00034 #include "StrMod/StrChunkPtr.h" 00035 00036 namespace strmod { 00037 namespace strmod { 00038 00039 const STR_ClassIdent StreamProcessor::identifier(25UL); 00040 00041 StreamProcessor::~StreamProcessor() 00042 { 00043 // outgoing_ and incoming_ are smart pointers and will automagically handle 00044 // the deletion themselves. 00045 } 00046 00047 }; // End namespace strmod 00048 }; // End namespace strmod
1.3-rc1