1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-03-14 19:17:44 +01:00
GPXSee/src/map/IMG/section.h

18 lines
199 B
C++

#ifndef IMG_SECTION_H
#define IMG_SECTION_H
#include <QtGlobal>
namespace IMG {
struct Section {
quint32 offset;
quint32 size;
Section() : offset(0), size(0) {}
};
}
#endif // IMG_SECTION_H