// file: Region.h #ifndef __REGION_H #define __REGION_H typedef struct { int begin; int maxPos; int end; float maxVal; } Region; #endif