Commit | Line | Data |
---|---|---|
a7868768 BA |
1 | #ifndef HELPERS_H |
2 | #define HELPERS_H | |
3 | ||
4 | // types (POD) to be used as items inside our data structures | |
5 | typedef struct { | |
e45132ac BA |
6 | int a; |
7 | double b; | |
a7868768 BA |
8 | } StructTest1; |
9 | ||
10 | typedef struct { | |
e45132ac BA |
11 | float a; |
12 | StructTest1* b; | |
a7868768 BA |
13 | } StructTest2; |
14 | ||
15 | #endif |