Project

General

Profile

Statistics
| Branch: | Revision:

root / scout / libscout / src / BehaviorList.h @ 2b0c2534

History | View | Annotate | Download (681 Bytes)

1
#ifndef _BEHAVIOR_LIST_H_
2
#define _BEHAVIOR_LIST_H_
3

    
4
#include "Behavior.h"
5
#include "behaviors/line_follow.h"
6
#include "behaviors/draw_cw_circle.h"
7
#include "behaviors/draw_ccw_circle.h"
8
#include "behaviors/Odometry.h"
9
#include "behaviors/navigationMap.h"
10
#include "behaviors/Scheduler.h"
11
#include "behaviors/WH_Robot.h"
12
#include "behaviors/wl_test.h"
13
#include "behaviors/pause_scout.h"
14
#include "behaviors/maze_solve.h"
15
#include "Sensors.h"
16

    
17
class BehaviorList
18
{
19
  public:
20
  std::vector<Behavior*> behavior_list;
21

    
22
  //Constructor. Initializes behavior_list
23
  BehaviorList(std::string scoutname, Sensors* sensor);
24
  //Destructor. Frees behavior_list;
25
  ~BehaviorList();
26
};
27

    
28
#endif