Last change
on this file since 97 was
81,
checked in by rosiere, 17 years ago
|
- Finish Environment (and test)
- Continue predictor_unit
- Add external tools
- svn keyword "Id" set
|
-
Property svn:keywords set to
Id
|
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.