source: trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component/include/Parameters.h @ 72

Last change on this file since 72 was 72, checked in by rosiere, 16 years ago
  • SystemC de l'unite fonctionnelle.
  • gestion des groupes / instructions custom
File size: 985 bytes
Line 
1#ifndef morpheo_behavioural_@DEFINE_Parameters_h
2#define morpheo_behavioural_@DEFINE_Parameters_h
3
4/*
5 * $Id$
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Common/include/Debug.h"
12#include "Behavioural/include/Parameters.h"
13#include <math.h>
14
15namespace morpheo {
16namespace behavioural {
17@NAMESPACE_BEGIN
18
19  class Parameters : public morpheo::behavioural::Parameters
20  {
21    //-----[ fields ]------------------------------------------------------------
22
23    //-----[ methods ]-----------------------------------------------------------
24  public : Parameters  ();
25  public : Parameters  (Parameters & param) ;
26  public : ~Parameters () ;
27
28  public :        std::string   msg_error  (void);
29
30  public :        std::string   print      (uint32_t depth);
31  public : friend std::ostream& operator<< (std::ostream& output_stream,
32                                            morpheo::behavioural::@NAMESPACE_USE::Parameters & x);
33  };
34
35@NAMESPACE_END
36}; // end namespace behavioural
37}; // end namespace morpheo             
38
39#endif
Note: See TracBrowser for help on using the repository browser.