source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/include/Parameters.h @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 1.3 KB
Line 
1#ifndef morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_Parameters_h
2#define morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_Parameters_h
3
4/*
5 * $Id: Parameters.h 81 2008-04-15 18:40:01Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Common/include/Debug.h"
12#include "Behavioural/include/Parameters.h"
13
14namespace morpheo {
15namespace behavioural {
16namespace core {
17namespace multi_front_end {
18namespace front_end {
19namespace prediction_unit {
20
21
22  class Parameters : public morpheo::behavioural::Parameters
23  {
24    //-----[ fields ]------------------------------------------------------------
25
26    //-----[ methods ]-----------------------------------------------------------
27  public : Parameters  ();
28//   public : Parameters  (Parameters & param) ;
29  public : ~Parameters () ;
30
31  public :        Parameters_test msg_error  (void);
32
33  public :        std::string     print      (uint32_t depth);
34  public : friend std::ostream&   operator<< (std::ostream& output_stream,
35                                            morpheo::behavioural::core::multi_front_end::front_end::prediction_unit::Parameters & x);
36  };
37
38}; // end namespace prediction_unit
39}; // end namespace front_end
40}; // end namespace multi_front_end
41}; // end namespace core
42
43}; // end namespace behavioural
44}; // end namespace morpheo             
45
46#endif
Note: See TracBrowser for help on using the repository browser.