Some fixes + improvements (Vector) + code reformatting
[cgds.git] / test / helpers.h
1 #ifndef HELPERS_H
2 #define HELPERS_H
3
4 // types (POD) to be used as items inside our data structures
5 typedef struct {
6 int a;
7 double b;
8 } StructTest1;
9
10 typedef struct {
11 float a;
12 StructTest1* b;
13 } StructTest2;
14
15 #endif