00001 /* #start# *********************************************************** 00002 00003 Scheduling Simulator 00004 Lehrstuhl f"ur Effiziente Algorithmen 00005 Technische Universit"at M"unchen 00006 00007 File : $Id: SSetTopologyMod.h,v 1.5 2003/01/08 18:57:14 meierb Exp $ 00008 00009 Purpose : 00010 00011 RCS-Log: 00012 $Log: SSetTopologyMod.h,v $ 00013 Revision 1.5 2003/01/08 18:57:14 meierb 00014 added randomized release times 00015 00016 Revision 1.1.1.1 2002/12/02 22:26:19 meierb 00017 my_schedule 00018 00019 Revision 1.3 2002/11/10 00:05:13 taeubig 00020 correction of the comment after the #endif directive 00021 00022 Revision 1.2 2002/11/09 23:21:58 taeubig 00023 Added std:: for standard namespace, 00024 realtive path corrections for header includes 00025 00026 Revision 1.1 2002/08/29 12:59:59 taeubig 00027 Added the sources 00028 00029 Revision 1.1 2000/05/29 14:44:39 taeubig 00030 Moved topology related stuff into subdirectory topos 00031 00032 Revision 1.2 2000/01/17 12:06:42 zoidl 00033 added javadoc comments 00034 00035 Revision 1.1 1999/10/05 13:42:27 zoidl 00036 lots of new load- and save-routines 00037 00038 00039 * #end# ************************************************************* */ 00040 00041 #ifndef SSETTOPOLOGYMOD_H 00042 #define SSETTOPOLOGYMOD_H 00043 00044 // system header files 00045 00046 // project header files 00047 #include "STopologyMod.h" 00048 00049 class SSetTopology; 00050 00054 class SSetTopologyMod : public STopologyMod { 00055 00056 public: 00059 SSetTopologyMod(SSetTopology& topo) : _topo(topo) {}; 00062 virtual ~SSetTopologyMod() {}; 00063 00064 // inherited member function 00069 virtual bool load(std::istream &in); 00070 00073 virtual void save(std::ostream &out) const; 00074 virtual void sample() {}; 00075 00076 private: 00077 SSetTopology& _topo; 00078 }; 00079 00080 #endif //SSETTOPOLOGYMOD_H