|
Last change
on this file since 80 was
80,
checked in by rosiere, 18 years ago
|
|
Oups, Environnement is french :P
|
|
File size:
317 bytes
|
| Line | |
|---|
| 1 | #ifndef Environment_Parameters_H |
|---|
| 2 | #define Environment_Parameters_H |
|---|
| 3 | |
|---|
| 4 | #include <stdint.h> |
|---|
| 5 | |
|---|
| 6 | namespace environment { |
|---|
| 7 | namespace ramlock { |
|---|
| 8 | |
|---|
| 9 | class Parameters |
|---|
| 10 | { |
|---|
| 11 | public : uint32_t _size; |
|---|
| 12 | |
|---|
| 13 | public : Parameters (uint32_t size) |
|---|
| 14 | { |
|---|
| 15 | _size = size; |
|---|
| 16 | } |
|---|
| 17 | |
|---|
| 18 | public : ~Parameters (void) |
|---|
| 19 | {}; |
|---|
| 20 | |
|---|
| 21 | }; |
|---|
| 22 | |
|---|
| 23 | }; |
|---|
| 24 | }; |
|---|
| 25 | #endif |
|---|
Note: See
TracBrowser
for help on using the repository browser.