00001 /* #start# *********************************************************** 00002 00003 Scheduling Simulator 00004 Lehrstuhl f"ur Effiziente Algorithmen 00005 Technische Universit"at M"unchen 00006 00007 File : $Id: STopViewEl.h,v 1.3 2003/01/08 18:57:15 meierb Exp $ 00008 00009 Purpose : 00010 00011 RCS-Log: 00012 $Log: STopViewEl.h,v $ 00013 Revision 1.3 2003/01/08 18:57:15 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.1 2002/08/29 12:59:59 taeubig 00020 Added the sources 00021 00022 Revision 1.2 2000/06/07 11:39:26 taeubig 00023 Updated for new MeshView 00024 00025 Revision 1.1 2000/02/22 11:58:48 hall 00026 new visulization model 00027 00028 00029 * #end# ************************************************************* */ 00030 00031 #ifndef STOPVIEWEL_H 00032 #define STOPVIEWEL_H 00033 00034 // system header files 00035 00036 // project header files 00037 #include "SViewEl.h" 00038 #include "SJobViewEl.h" 00039 00040 class STopViewEl : public SViewEl { 00041 public: 00042 STopViewEl(SJobViewEl &proto) : SViewEl(), _proto(proto) {}; 00043 00044 00045 protected: 00046 SJobViewEl *getClone() { return _proto.clone(); }; 00047 private: 00048 SJobViewEl &_proto; 00049 }; 00050 00051 00052 #endif