summaryrefslogtreecommitdiff
path: root/include/mbgl/storage/resource_type.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/storage/resource_type.hpp')
-rw-r--r--include/mbgl/storage/resource_type.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/mbgl/storage/resource_type.hpp b/include/mbgl/storage/resource_type.hpp
new file mode 100644
index 0000000000..b7204a9fa1
--- /dev/null
+++ b/include/mbgl/storage/resource_type.hpp
@@ -0,0 +1,18 @@
+#ifndef MBGL_STORAGE_RESOURCE_TYPE
+#define MBGL_STORAGE_RESOURCE_TYPE
+
+#include <cstdint>
+
+namespace mbgl {
+
+enum class ResourceType : uint8_t {
+ Unknown = 0,
+ Tile = 1,
+ Glyphs = 2,
+ Image = 3,
+ JSON = 4
+};
+
+}
+
+#endif