Project

General

Profile

Statistics
| Branch: | Revision:

root / scout / libscout / src / BehaviorList.h @ 5d0687a9

History | View | Annotate | Download (571 Bytes)

1
#ifndef _BEHAVIOR_LIST_H_
2
#define _BEHAVIOR_LIST_H_
3

    
4
#include "Behavior.h"
5
#include "behaviors/sim_line.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

    
14
class BehaviorList
15
{
16
  public:
17
  std::vector<Behavior*> behavior_list;
18

    
19
  //Constructor. Initializes behavior_list
20
  BehaviorList(std::string scoutname);
21
  //Destructor. Frees behavior_list;
22
  ~BehaviorList();
23
};
24

    
25
#endif