source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Meta_Predictor_Glue/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.4 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/Meta_Predictor_Glue/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 {
20namespace meta_predictor_glue {
21
22
23  Statistics::Statistics (string                                      name                       ,
24                          morpheo::behavioural::Parameters_Statistics parameters_statistics      ,
25                          Parameters                                  parameters
26                          ) :
27    morpheo::behavioural::Statistics(name                  ,
28                                     parameters_statistics ),
29    _parameters(parameters)
30  {
31    log_printf(FUNC,Meta_Predictor_Glue,"Statistics","Begin");
32    log_printf(FUNC,Meta_Predictor_Glue,"Statistics","End");
33  };
34 
35  Statistics::~Statistics () 
36  { 
37    log_printf(FUNC,Meta_Predictor_Glue,"~Statistics","Begin");
38    log_printf(FUNC,Meta_Predictor_Glue,"~Statistics","End");
39  };
40
41}; // end namespace meta_predictor_glue
42}; // end namespace meta_predictor
43
44}; // end namespace core
45}; // end namespace multi_front_end
46}; // end namespace front_end
47}; // end namespace prediction_unit
48}; // end namespace direction
49
50
51}; // end namespace behavioural
52}; // end namespace morpheo             
53#endif
Note: See TracBrowser for help on using the repository browser.