source: trunk/IPs/systemC/Environment/RamLock/src/RamLock.cpp @ 80

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

Oups, Environnement is french :P

File size: 293 bytes
Line 
1#include "../include/RamLock.h"
2
3namespace environment {
4namespace ramlock {
5
6  RamLock::RamLock (std::string  name, 
7                    Parameters * param)
8  {
9    _name  = name;
10    _param = param;
11    _lock  = new bool [param->_size];
12  }
13
14  RamLock::~RamLock (void)
15  {
16    delete [] _lock;
17  }
18
19};
20};
Note: See TracBrowser for help on using the repository browser.