blob: b3e3ab52b6bce9225b170615fb8406e15d4a09c8 (
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>;
}
#endif
|