source: trunk/IPs/systemC/Environment/Data/include/Data_Parameters.h @ 144

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

1) compatible gcc 4.4.3
2) Translation file in MORPHEO_PREFIX directory

  • Property svn:keywords set to Id
File size: 828 bytes
Line 
1#ifndef ENVIRONMENT_DATA_PARAMETERS_H
2#define ENVIRONMENT_DATA_PARAMETERS_H
3
4#include <iostream>
5#include <stdint.h>
6#include "../../../shared/soclib_segment_table.h"
7
8namespace environment {
9namespace data {
10 
11  class Parameters
12  {
13  public : uint32_t               max_seg    ;
14  public : uint32_t               globalIndex;
15  public : uint32_t               localIndex ;
16  public : SOCLIB_SEGMENT_TABLE * segtab     ;
17
18  public : Parameters (uint32_t               max_seg    ,
19                       uint32_t               globalIndex,
20                       uint32_t               localIndex ,
21                       SOCLIB_SEGMENT_TABLE * segtab     )
22    {
23      this->max_seg     = max_seg    ;
24      this->globalIndex = globalIndex;
25      this->localIndex  = localIndex ;
26      this->segtab      = segtab     ;
27    }   
28  }; //end Parameters
29 
30};
31};
32#endif
Note: See TracBrowser for help on using the repository browser.