Now using 2 spaces instead of tabs. Fix copyright years. Improve documentation
[cgds.git] / test / helpers.h
CommitLineData
a7868768
BA
1#ifndef HELPERS_H
2#define HELPERS_H
3
4// types (POD) to be used as items inside our data structures
5typedef struct {
e45132ac
BA
6 int a;
7 double b;
a7868768
BA
8} StructTest1;
9
10typedef struct {
e45132ac
BA
11 float a;
12 StructTest1* b;
a7868768
BA
13} StructTest2;
14
15#endif