00001 /*************************************************************************** 00002 SRandOSAlg.h - description 00003 ------------------- 00004 begin : Mon Mär 17 2003 00005 copyright : (C) 2003 by LEA / TUM 00006 email : taeubig@in.tum.de 00007 ***************************************************************************/ 00008 00009 #ifndef SRANDOSALG_H 00010 #define SRANDOSALG_H 00011 00012 #include "SSchedAlgorithm.h" 00013 00018 class SRandOSAlg : public SSchedAlgorithm { 00019 public: 00020 virtual ~SRandOSAlg(){}; 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 00030 #endif