source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Select/Select_Priority_Fixed/include/Parameters.h @ 137

Last change on this file since 137 was 137, checked in by rosiere, 14 years ago

Various modif (add test, and vhdl)

  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
1#ifndef morpheo_behavioural_generic_select_select_priority_fixed_Parameters_h
2#define morpheo_behavioural_generic_select_select_priority_fixed_Parameters_h
3
4/*
5 * $Id: Parameters.h 137 2010-02-16 12:35:48Z rosiere $
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 {
17namespace generic {
18namespace select {
19namespace select_priority_fixed {
20
21  class Parameters : public morpheo::behavioural::Parameters
22  {
23    //-----[ fields ]------------------------------------------------------------
24  public : uint32_t _nb_entity       ;
25  public : bool     _encoding_one_hot;
26  public : bool     _encoding_compact;
27
28  public : uint32_t _size_entity;
29
30    //-----[ methods ]-----------------------------------------------------------
31  public : Parameters  (uint32_t nb_entity       ,
32                        bool     encoding_one_hot,
33                        bool     encoding_compact);
34//   public : Parameters  (Parameters & param) ;
35  public : ~Parameters () ;
36
37  public :        void            copy       (void);
38
39  public :        Parameters_test msg_error  (void);
40
41  public :        std::string   print      (uint32_t depth);
42  public : friend std::ostream& operator<< (std::ostream& output_stream,
43                                            morpheo::behavioural::generic::select::select_priority_fixed::Parameters & x);
44  };
45
46}; // end namespace select_priority_fixed
47}; // end namespace select
48}; // end namespace generic
49}; // end namespace behavioural
50}; // end namespace morpheo             
51
52#endif
Note: See TracBrowser for help on using the repository browser.