my_struct.h 180 Bytes
Newer Older
yongshk's avatar
yongshk committed
1
2
3
4
5
6
7
8
9
10
11
// my_struct.h
#ifndef MY_STRUCT_H
#define MY_STRUCT_H

struct MyStruct
{
    /// example data containing fixed length array of floats
    float data[4];
};

#endif // MY_STRUCT_H