blob: 00b2446e40da70535874f91003934a6b6f8a7d91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef MBGL_ANNOTATION
#define MBGL_ANNOTATION
#include <cstdint>
#include <vector>
namespace mbgl {
using AnnotationID = uint32_t;
using AnnotationIDs = std::vector<AnnotationID>;
} // namespace mbgl
#endif
|