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