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

Last change on this file since 75 was 75, checked in by rosiere, 16 years ago

Update all component (except front_end) to :

  • new statistics model
  • no namespace std
File size: 1.4 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$
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 : const uint32_t _nb_entity       ;
25  public : const bool     _encoding_one_hot;
26  public : const bool     _encoding_compact;
27  public : const uint32_t _size_entity;
28
29    //-----[ methods ]-----------------------------------------------------------
30  public : Parameters  (uint32_t nb_entity       ,
31                        bool     encoding_one_hot,
32                        bool     encoding_compact);
33  public : Parameters  (Parameters & param) ;
34  public : ~Parameters () ;
35
36  public :        std::string   msg_error  (void);
37  public :        std::string   print      (uint32_t depth);
38  public : friend std::ostream& operator<< (std::ostream& output_stream,
39                                            morpheo::behavioural::generic::select::select_priority_fixed::Parameters & x);
40  };
41
42}; // end namespace select_priority_fixed
43}; // end namespace select
44}; // end namespace generic
45}; // end namespace behavioural
46}; // end namespace morpheo             
47
48#endif
Note: See TracBrowser for help on using the repository browser.