source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Sort/include/Parameters.h @ 88

Last change on this file since 88 was 88, checked in by rosiere, 15 years ago

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 1.6 KB
Line 
1#ifndef morpheo_behavioural_generic_sort_Parameters_h
2#define morpheo_behavioural_generic_sort_Parameters_h
3
4/*
5 * $Id: Parameters.h 88 2008-12-10 18:31:39Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Common/include/Debug.h"
12#include "Behavioural/include/Parameters.h"
13#include "Behavioural/Generic/Sort/include/Types.h"
14
15namespace morpheo {
16namespace behavioural {
17namespace generic {
18namespace sort {
19
20
21  class Parameters : public morpheo::behavioural::Parameters
22  {
23    //-----[ fields ]------------------------------------------------------------
24  public : uint32_t _nb_input           ;
25  public : uint32_t _nb_output          ;
26  public : bool     _ascending          ;
27  public : uint32_t _size_data          ;
28  public : bool     _have_port_index_out;
29  public : bool     _have_port_data_out ;
30
31  public : uint32_t _size_address       ;
32
33    //-----[ methods ]-----------------------------------------------------------
34  public : Parameters  (uint32_t nb_input           ,
35                        uint32_t nb_output          ,
36                        bool     ascending          ,
37                        uint32_t size_data          ,
38                        bool     have_port_index_out,
39                        bool     have_port_data_out );
40
41//public : Parameters  (Parameters & param) ;
42  public : ~Parameters () ;
43
44  public :        void            copy       (void);
45
46  public :        Parameters_test msg_error  (void);
47
48  public :        std::string     print      (uint32_t depth);
49  public : friend std::ostream&   operator<< (std::ostream& output_stream,
50                                            morpheo::behavioural::generic::sort::Parameters & x);
51  };
52
53}; // end namespace sort
54}; // end namespace generic
55
56}; // end namespace behavioural
57}; // end namespace morpheo             
58
59#endif
Note: See TracBrowser for help on using the repository browser.