Project

General

Profile

Statistics
| Branch: | Revision:

root / scout / libscout / src / BehaviorList.template.cpp @ c33e5aa4

History | View | Annotate | Download (232 Bytes)

1
#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
}