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
187 B
C
Raw Normal View History

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