#ifdef STATISTICS /* * $Id$ * * [ Description ] * */ #include "Behavioural/Generic/Victim/Victim_Pseudo_LRU/include/Statistics.h" #include using namespace std; namespace morpheo { namespace behavioural { namespace generic { namespace victim { namespace victim_pseudo_lru { void Statistics::add (uint32_t nb_access, uint32_t nb_update) { _stat_port_access->add(nb_access); _stat_port_update->add(nb_update); }; }; // end namespace victim_pseudo_lru }; // end namespace victim }; // end namespace generic }; // end namespace behavioural }; // end namespace morpheo #endif