source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/src/Statistics.cpp @ 48

Last change on this file since 48 was 48, checked in by rosiere, 17 years ago

Modification des Makefile : pas de creation inutile de shell

File size: 1.3 KB
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/include/Statistics.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace core {
14namespace multi_front_end {
15namespace front_end {
16namespace prediction_unit {
17namespace direction {
18
19namespace meta_predictor {
20
21
22  Statistics::Statistics (string                                      name                       ,
23                          morpheo::behavioural::Parameters_Statistics parameters_statistics      ,
24                          Parameters                                  parameters
25                          ) :
26    morpheo::behavioural::Statistics(name                  ,
27                                     parameters_statistics ),
28    _parameters(parameters)
29  {
30    log_printf(FUNC,Meta_Predictor,"Statistics","Begin");
31    log_printf(FUNC,Meta_Predictor,"Statistics","End");
32  };
33 
34  Statistics::~Statistics () 
35  { 
36    log_printf(FUNC,Meta_Predictor,"~Statistics","Begin");
37    log_printf(FUNC,Meta_Predictor,"~Statistics","End");
38  };
39
40}; // end namespace meta_predictor
41
42}; // end namespace core
43}; // end namespace multi_front_end
44}; // end namespace front_end
45}; // end namespace prediction_unit
46}; // end namespace direction
47
48
49}; // end namespace behavioural
50}; // end namespace morpheo             
51#endif
Note: See TracBrowser for help on using the repository browser.