Scheduler
actionDimension.cpp
Go to the documentation of this file.
1 
10 #include "actionDimension.h"
11 
12 using namespace Mdp;
13 
15 {
16  return actions.size();
17 }
18 
19 
21 {
22  actions.push_back(a);
23 }
24 
25 std::vector<Action*> ActionDimension::getActionList()
26 {
27  return actions;
28 }
29 
30 
32 {
33  return actions[index];
34 }
35 
36 
37 
38 
39 
std::vector< Action * > getActionList()
Action * getAction(int index)
Definition: action.h:18
void addAction(Action *)