| 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 | |
|---|
| 9 | using namespace std; |
|---|
| 10 | using namespace hierarchy_memory::sort_file; |
|---|
| 11 | |
|---|
| 12 | namespace 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.