source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Meta_Predictor_Glue/src/Statistics_print_body.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.1 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
11#include <sstream>
12using namespace std;
13
14namespace morpheo                    {
15namespace behavioural {
16namespace core {
17namespace multi_front_end {
18namespace front_end {
19namespace prediction_unit {
20namespace direction {
21
22namespace meta_predictor {
23namespace meta_predictor_glue {
24
25
26  string Statistics::print_body (uint32_t depth)
27  {
28    log_printf(FUNC,Meta_Predictor_Glue,"print_body","Begin");
29
30    string        tab = string(depth,'\t');
31    ostringstream msg;
32
33    msg << tab << "";
34   
35    log_printf(FUNC,Meta_Predictor_Glue,"print_body","End");
36
37    return msg.str();
38  };
39
40}; // end namespace meta_predictor_glue
41}; // end namespace meta_predictor
42
43}; // end namespace core
44}; // end namespace multi_front_end
45}; // end namespace front_end
46}; // end namespace prediction_unit
47}; // end namespace direction
48
49
50}; // end namespace behavioural
51}; // end namespace morpheo             
52#endif
Note: See TracBrowser for help on using the repository browser.