Scheduler
actionDimension.h
Go to the documentation of this file.
1 
10 #ifndef ACTION_DIMENSION_H
11 #define ACTION_DIMENSION_H
12 
13 #include <vector>
14 
15 namespace Mdp
16 {
17 
18 class Action;
19 
21 {
22 public:
23  void addAction(Action *);
24  std::vector<Action*> getActionList(); /*FIXME: DO NOT USE*/
25  Action *getAction(int index);
26  int getNumberOfActions();
27 private:
28  std::vector<Action*> actions;
29 };
30 
31 
32 }
33 
34 #endif
35 
36 
std::vector< Action * > getActionList()
Action * getAction(int index)
Definition: action.h:18
void addAction(Action *)