Project

General

Profile

Statistics
| Branch: | Revision:

root / scout / libscout / src / BehaviorList.template.cpp @ 36701fcd

History | View | Annotate | Download (232 Bytes)

1 c9638ad1 Alex
#include "BehaviorList.h"
2
3
BehaviorList::BehaviorList()
4
{
5
  behavior_list.push_back(behavior<AUTOGEN_BEHAVIOR_BASE_NAME>);
6
  return;
7
}
8
9
BehaviorList::~BehaviorList()
10
{
11
  while(!behavior_list.empty())
12
    behavior_list.pop_back();
13
}