Project

General

Profile

Statistics
| Branch: | Revision:

scoutos / scout / libscout / src / BehaviorList.h @ dc742c14

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

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

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

    
23
#endif