00001 /* #start# *********************************************************** 00002 00003 Scheduling Simulator 00004 Lehrstuhl f"ur Effiziente Algorithmen 00005 Technische Universit"at M"unchen 00006 00007 File : $Id: STopologyMod.h,v 1.5 2003/03/13 19:24:25 taeubig Exp $ 00008 00009 Purpose : 00010 00011 * #end# ************************************************************* */ 00012 00013 #ifndef STOPOLOGYMOD_H 00014 #define STOPOLOGYMOD_H 00015 00016 // system header files 00017 #include <cassert> 00018 00019 // project header files 00020 #include "../SModifier.h" 00021 00022 class STopology; 00023 00024 // ----------------------------------------------------------------------- 00028 class STopologyMod : public SModifier { 00029 public: 00030 //virtual STopology* clone() { assert(false); }; 00031 }; 00032 // ----------------------------------------------------------------------- 00033 00034 #endif //STOPOLOGYMOD_H 00035 00036 00037 00038