00001 /* #start# *********************************************************** 00002 00003 Scheduling Simulator 00004 Lehrstuhl f"ur Effiziente Algorithmen 00005 Technische Universit"at M"unchen 00006 00007 File : $Id: SJobIdList.h,v 1.2 2002/11/11 10:26:08 taeubig Exp $ 00008 00009 Purpose : 00010 00011 RCS-Log: 00012 $Log: SJobIdList.h,v $ 00013 Revision 1.2 2002/11/11 10:26:08 taeubig 00014 std namespace and header include changes 00015 00016 Revision 1.1 2002/08/29 12:59:59 taeubig 00017 Added the sources 00018 00019 Revision 1.2 2000/05/24 12:53:45 taeubig 00020 New compiler (gcc-2.95) and new Qt (2.1) 00021 Replaced "list" by "leda_list" etc. 00022 00023 Revision 1.1 1999/04/27 13:39:57 schickin 00024 well folks, that's the first demo version that really runs 8-) 00025 00026 00027 * #end# ************************************************************* */ 00028 00029 #ifndef SJOBIDLIST_H 00030 #define SJOBIDLIST_H 00031 00032 // system header files 00033 #include <LEDA/list.h> 00034 00035 // project header files 00036 #include "../model/STaskSystem.h" 00037 00038 class SJobIdList : public leda_list<int> { 00039 public: 00040 SJobIdList(); 00041 void sortByPrio(const leda_array<int>& prio); 00042 private: 00043 }; 00044 00045 #endif /* SJOBIDLIST_H */