#ifdef SYSTEMC #if defined(STATISTICS) or defined(VHDL_TESTBENCH) /* * $Id$ * * [ Description ] * */ #include "Behavioural/Generic/Counter/include/Counter.h" namespace morpheo { namespace behavioural { namespace generic { namespace counter { void Counter::transition (void) { log_printf(FUNC,Counter,"transition","Begin"); #ifdef STATISTICS _stat->add(); #endif #ifdef VHDL_TESTBENCH vhdl_testbench_transition (); #endif log_printf(FUNC,Counter,"transition","End"); }; }; // end namespace counter }; // end namespace generic }; // end namespace behavioural }; // end namespace morpheo #endif #endif