Scheduler
mdpGovernorConfiguration.h
Go to the documentation of this file.
1 
10 #ifndef MDP_GOVERNOR_CONFIGURATION_H
11 #define MDP_GOVERNOR_CONFIGURATION_H
12 
13 #include <vector>
14 
16 
17 namespace Mdp
18 {
19  class StateSpaceDimension;
20 }
21 
22 namespace MdpGov
23 {
25 {
26 public:
27  MdpGovernorConfiguration(std::string file) : Scheduler::SchedulerConfiguration(file){};
28  virtual Scheduler::FreqGovernor *getFreqGovernorFromFile() override;
29  virtual std::vector<Mdp::StateSpaceDimension*> getDimensionsFromFile();
30 };
31 
32 }
33 
34 #endif
Definition: action.h:18