00001 /* #start# *********************************************************** 00002 00003 Scheduling Simulator 00004 Lehrstuhl f"ur Effiziente Algorithmen 00005 Technische Universit"at M"unchen 00006 00007 File : $Id: SSingleTopologyMod.h,v 1.5 2003/01/08 18:57:14 meierb Exp $ 00008 00009 Purpose : 00010 00011 RCS-Log: 00012 $Log: SSingleTopologyMod.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:42 taeubig 00030 Moved topology related stuff into subdirectory topos 00031 00032 Revision 1.2 2000/01/17 18:11:44 zoidl 00033 added javadoc comments 00034 00035 Revision 1.1 1999/10/05 13:42:33 zoidl 00036 lots of new load- and save-routines 00037 00038 00039 * #end# ************************************************************* */ 00040 00041 #ifndef SSINGLETOPOLOGYMOD_H 00042 #define SSINGLETOPOLOGYMOD_H 00043 00044 // system header files 00045 00046 // project header files 00047 #include "STopologyMod.h" 00048 00049 class SSingleTopology; 00050 00054 class SSingleTopologyMod : public STopologyMod { 00055 00056 public: 00059 SSingleTopologyMod(SSingleTopology& topo) : _topo(topo) {}; 00060 00063 virtual ~SSingleTopologyMod() {}; 00064 00065 // inherited member function 00066 00071 virtual bool load(std::istream &in); 00072 00075 virtual void save(std::ostream &out) const; 00076 00077 virtual void sample() {}; 00078 00079 private: 00080 SSingleTopology& _topo; 00081 }; 00082 00083 #endif //SSINGLETOPOLOGYMOD_H