|
Last change
on this file since 116 was
81,
checked in by rosiere, 18 years ago
|
- Finish Environment (and test)
- Continue predictor_unit
- Add external tools
- svn keyword "Id" set
|
-
Property svn:keywords set to
Id
|
|
File size:
307 bytes
|
| Line | |
|---|
| 1 | #ifndef ENVIRONMENT_QUEUE_PARAMETERS_H |
|---|
| 2 | #define ENVIRONMENT_QUEUE_PARAMETERS_H |
|---|
| 3 | |
|---|
| 4 | #include <stdint.h> |
|---|
| 5 | #include <iostream> |
|---|
| 6 | |
|---|
| 7 | namespace environment { |
|---|
| 8 | namespace queue { |
|---|
| 9 | |
|---|
| 10 | class Parameters |
|---|
| 11 | { |
|---|
| 12 | public : uint32_t _size; |
|---|
| 13 | |
|---|
| 14 | public : Parameters (uint32_t size) |
|---|
| 15 | { |
|---|
| 16 | _size = size; |
|---|
| 17 | } |
|---|
| 18 | }; |
|---|
| 19 | |
|---|
| 20 | }; |
|---|
| 21 | }; |
|---|
| 22 | #endif |
|---|
Note: See
TracBrowser
for help on using the repository browser.