Project

General

Profile

Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (443 Bytes)

1
#ifndef _BEHAVIOR_LIST_H_
2
#define _BEHAVIOR_LIST_H_
3

    
4
#include "Behavior.h"
5
#include "behaviors/draw_cw_circle.h"
6
#include "behaviors/draw_ccw_circle.h"
7
#include "behaviors/Odometry.h"
8
#include "behaviors/navigationMap.h"
9

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

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

    
21
#endif