00001 // -*- C++ -*- 00002 /***************************************************************************** 00003 * 00004 * |_|_|_ |_|_ |_ |_|_|_ |_ C O M M U N I C A T I O N 00005 * |_ |_ |_ |_ |_ |_ N E T W O R K S 00006 * |_ |_ |_ |_ |_ |_ C L A S S 00007 * |_|_|_ |_ |_|_ |_|_|_ |_|_|_|_ L I B R A R Y 00008 * 00009 * $Id: EventIterator.h,v 1.4 2002/02/01 08:46:04 spee Exp $ 00010 * 00011 * Class: CNEventIterator --- ... 00012 * 00013 ***************************************************************************** 00014 * Copyright (C) 1992-2002 Communication Networks 00015 * Aachen University of Technology 00016 * D-52056 Aachen 00017 * Germany 00018 * Email: cncl-adm@comnets.rwth-aachen.de 00019 ***************************************************************************** 00020 * This file is part of the CN class library. All files marked with 00021 * this header are free software; you can redistribute it and/or modify 00022 * it under the terms of the GNU Library General Public License as 00023 * published by the Free Software Foundation; either version 2 of the 00024 * License, or (at your option) any later version. This library is 00025 * distributed in the hope that it will be useful, but WITHOUT ANY 00026 * WARRANTY; without even the implied warranty of MERCHANTABILITY or 00027 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 00028 * License for more details. You should have received a copy of the GNU 00029 * Library General Public License along with this library; if not, write 00030 * to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, 00031 * USA. 00032 *****************************************************************************/ 00033 00034 #ifndef __CNEventIterator_h 00035 #define __CNEventIterator_h 00036 00037 00038 #include <CNCL/Object.h> // Base class 00039 00040 extern CNClassDesc CN_EVENTITERATOR; // Class CNEventIterator description 00041 00042 class CNEvent; 00043 00049 class CNEventIterator : public CNObject 00050 { 00051 protected: /****** Constructors ******************************************/ 00053 CNEventIterator() {} 00054 00055 public: /****** Public interface **************************************/ 00062 virtual CNEvent *next_event() = 0; 00064 virtual void delete_current_event() = 0; 00065 00066 private: /****** Internal private members ******************************/ 00067 00068 protected: 00070 CNEvent *act_event; // currently used event 00072 bool use_current; // flag 00073 00074 public: /****** Member functions required by CNCL *********************/ 00075 virtual CNClassDesc class_desc() const // CNClass description 00076 { return CN_EVENTITERATOR; } 00077 00079 virtual bool is_a(CNClassDesc desc) const 00080 { return desc == CN_EVENTITERATOR ? TRUE : CNObject::is_a(desc); } 00081 00083 static CNEventIterator *cast_from_object(CNObject *obj) 00084 { 00085 # ifdef NO_TYPE_CHECK 00086 return (CNEventIterator *)obj; 00087 # else 00088 return (CNEventIterator *)( !obj || obj->is_a(CN_EVENTITERATOR) 00089 ? obj : fatal_type(obj->class_desc(), CN_EVENTITERATOR) ); 00090 # endif 00091 } 00092 }; 00093 00094 #endif
1.2.13.1 written by Dimitri van Heesch,
© 1997-2001