#if 0 /* * $Id: Function_pointer.cpp 145 2010-10-13 18:15:51Z rosiere $ * * [ Description ] * */ #include "Behavioural/include/Function_pointer.h" namespace morpheo { namespace behavioural { Function_pointer::Function_pointer (void) { _transition = new std::list; _genMoore = new std::list; } Function_pointer::~Function_pointer (void) { delete _transition; delete _genMoore ; } }; // end namespace behavioural }; // end namespace morpheo #endif