Scheduler
actions.h
Go to the documentation of this file.
1 
10 #include <mdp/action.h>
11 
12 
13 namespace Gridworld
14 {
15 
16 class Up : public Mdp::Action
17 {
18 public:
19  std::string getName() override;
20  void performAction() verride;
21 };
22 
23 class Down : public Mdp::Action
24 {
25 public:
26  std::string getName() override;
27  void performAction() verride;
28 };
29 
30 class Left : public Mdp::Action
31 {
32 public:
33  std::string getName() override;
34  void performAction() verride;
35 };
36 
37 class Right : public Mdp::Action
38 {
39 public:
40  std::string getName() override;
41  void performAction() verride;
42 };
43 
44 
45 }
46 
std::string getName() override
void performAction() verride