00001 /* #start# *********************************************************** 00002 00003 Scheduling Simulator 00004 Lehrstuhl f"ur Effiziente Algorithmen 00005 Technische Universit"at M"unchen 00006 00007 File : $Id: SJobExecInfo.h,v 1.4 2003/01/24 10:04:55 hall Exp $ 00008 00009 Purpose : Intended only for internal use of SPassiveMachines: Stores the 00010 job-specific data which is needed by the machines during the 00011 execution of a job. 00012 00013 * #end# ************************************************************* */ 00014 00015 #ifndef SJOBEXECINFO_H 00016 #define SJOBEXECINFO_H 00017 00018 00019 class SJobExecInfo { 00020 public: 00021 SJobExecInfo(double time) : _startOfAlloc(time) {}; 00022 double getStartOfAlloc() const { return _startOfAlloc; }; 00023 private: 00025 double _startOfAlloc; 00026 }; 00027 00028 #endif //SJOBEXECINFO_H