00001 /*************************************************************************** 00002 SLEPT.h - description 00003 ------------------- 00004 begin : Don Dez 19 2002 00005 copyright : (C) 2002 by LEA / TUM 00006 email : taeubig@in.tum.de 00007 ***************************************************************************/ 00008 00009 #ifndef SLEPT_H 00010 #define SLEPT_H 00011 00012 #include "SSchedAlgorithm.h" 00013 00018 class SLEPT : public SSchedAlgorithm { 00019 public: 00020 00021 virtual ~SLEPT() {}; 00022 virtual void startup(); 00023 virtual double innerLoop(const leda_list<STSysSchedEvent>& rEvents); 00024 virtual const leda_string getDescription() const; 00025 virtual const leda_string &getName() const; 00026 virtual const SClassification &getClassification() const; 00027 virtual SLeaBibEntry &getLeaBibEntry() const; 00028 00029 }; 00030 00031 #endif