source: trunk/IPs/systemC/hierarchy_memory/file/param.h @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 495 bytes
Line 
1#ifndef PARAM_H
2#define PARAM_H
3
4#include <stdint.h>
5#include <iostream>
6#include "slot.h"
7#include "file.h"
8
9using namespace std;
10using namespace hierarchy_memory::sort_file;
11
12namespace hierarchy_memory
13{
14  namespace sort_file
15  {
16    class param_t
17    {
18    public : char   * name;
19    public : uint32_t size;
20
21    public : param_t (char * name,
22                      uint32_t size)
23      {
24        this->name = name;
25        this->size = size;
26      }
27    };
28
29  }; //sort_file
30}; //hierarchy_memory
31#endif //!PARAM_H
32 
Note: See TracBrowser for help on using the repository browser.