#if 0 /* * $Id: Function_pointer_add.cpp 145 2010-10-13 18:15:51Z rosiere $ * * [ Description ] * */ #include "Behavioural/include/Function_pointer.h" namespace morpheo { namespace behavioural { void Function_pointer::transition_add (f_t f) { _transition->push_back(f); } void Function_pointer::genMoore_add (f_t f) { _genMoore->push_back(f); } }; // end namespace behavioural }; // end namespace morpheo #endif