Scheduler
maxTempEstimator.h
Go to the documentation of this file.
1 
10 #ifndef MAX_TEMP_ESTIMATOR_H
11 #define MAX_TEMP_ESTIMATOR_H
12 
13 namespace RlScheduler
14 {
15 
17 {
18 public:
19  virtual ~MaxTempEstimator(){};
20  virtual double getMaximumTemperature()=0;
21 };
22 
23 }
24 
25 #endif
virtual double getMaximumTemperature()=0