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

18 lines
199 B
C
Raw Normal View History

2023-01-05 21:44:03 +01:00
#ifndef IMG_SECTION_H
#define IMG_SECTION_H
2022-03-25 19:28:32 +01:00
#include <QtGlobal>
namespace IMG {
struct Section {
quint32 offset;
quint32 size;
Section() : offset(0), size(0) {}
};
}
2023-01-05 21:44:03 +01:00
#endif // IMG_SECTION_H