Project

General

Profile

Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (420 Bytes)

1 c239584b Priya
#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
#define NUM_BEHAVIORS 2
9
#define NUM_SCOUTS 1
10
11
class BehaviorList
12
{
13
  public:
14
  std::vector<Behavior*> behavior_list;
15
16
  //Constructor. Initializes behavior_list
17
  BehaviorList(std::string scoutname);
18
  //Destructor. Frees behavior_list;
19
  ~BehaviorList();
20
};
21
22
#endif