00001 /* #start# *********************************************************** 00002 00003 Scheduling Simulator 00004 Lehrstuhl f"ur Effiziente Algorithmen 00005 Technische Universit"at M"unchen 00006 00007 File : $Id: SPrecIntervalInt.h,v 1.3 2003/01/08 18:57:12 meierb Exp $ 00008 00009 Purpose : 00010 00011 RCS-Log: 00012 $Log: SPrecIntervalInt.h,v $ 00013 Revision 1.3 2003/01/08 18:57:12 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:58 taeubig 00020 Added the sources 00021 00022 Revision 1.5 2000/01/17 13:17:35 zoidl 00023 added javadoc comments 00024 00025 Revision 1.4 1999/03/23 14:26:53 schickin 00026 a lot of new code in /model: things compile but have no functionality 00027 00028 Revision 1.3 1999/01/29 10:03:49 schickin 00029 Project-Headers added. 00030 00031 00032 * #end# ************************************************************* */ 00033 00034 #ifndef SPRECINTERVALINT_H 00035 #define SPRECINTERVALINT_H 00036 #include "SPrecRelation.h" 00037 #include "SVisPrecInterval.h" 00038 00042 class SPrecIntervalInt : public SPrecRelation { 00043 public: 00044 virtual ~SPrecIntervalInt() {}; 00045 private: 00046 SVisPrecInterval lnkUnnamed; 00047 }; 00048 00049 #endif //SPRECINTERVALINT_H 00050 00051