Project

General

Profile

Statistics
| Branch: | Revision:

scoutos / scout / libscout / src / BehaviorList.h @ 94a3af93

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

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

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

    
19
#endif