source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Counter/include/Parameters.h

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

Various modif (add test, and vhdl)

  • Property svn:keywords set to Id
File size: 1.2 KB
Line 
1#ifndef morpheo_behavioural_generic_counter_Parameters_h
2#define morpheo_behavioural_generic_counter_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 counter {
19
20
21  class Parameters : public morpheo::behavioural::Parameters
22  {
23    //-----[ fields ]------------------------------------------------------------
24  public : uint32_t _size_data;
25  public : uint32_t _nb_port  ;
26  public : uint32_t _data_max ;
27
28    //-----[ methods ]-----------------------------------------------------------
29  public : Parameters  (uint32_t size_data,
30                        uint32_t nb_port  );
31//   public : Parameters  (Parameters & param) ;
32  public : ~Parameters () ;
33
34  public :        void             copy       (void);
35
36  public :        Parameters_test  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::counter::Parameters & x);
40  };
41
42}; // end namespace counter
43}; // end namespace generic
44
45}; // end namespace behavioural
46}; // end namespace morpheo             
47
48#endif
Note: See TracBrowser for help on using the repository browser.