Project

General

Profile

Statistics
| Branch: | Revision:

scoutos / scout / libscout / src / BehaviorList.h @ 3f72678f

History | View | Annotate | Download (540 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

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

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

    
24
#endif