diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2016-08-30 12:43:46 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2016-09-06 14:29:22 -0700 |
commit | 8e2170c8855456258de8ffd49d22a621b95e9fb2 (patch) | |
tree | 505c4eba02f5b9e237cf44984d8078c3a13e8414 /src/mbgl/style/update_batch.hpp | |
parent | 6c23a6a095097c457c896dfeb1a3005a4f618f41 (diff) | |
download | qtlocation-mapboxgl-8e2170c8855456258de8ffd49d22a621b95e9fb2.tar.gz |
[core] Batch source updates
Diffstat (limited to 'src/mbgl/style/update_batch.hpp')
-rw-r--r-- | src/mbgl/style/update_batch.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/mbgl/style/update_batch.hpp b/src/mbgl/style/update_batch.hpp new file mode 100644 index 0000000000..ee82c98fda --- /dev/null +++ b/src/mbgl/style/update_batch.hpp @@ -0,0 +1,15 @@ +#pragma once + +#include <set> +#include <string> + +namespace mbgl { +namespace style { + +class UpdateBatch { +public: + std::set<std::string> sourceIDs; +}; + +} // namespace style +} // namespace mbgl |