summaryrefslogtreecommitdiff
path: root/src/mbgl/style/update_batch.hpp
blob: ee82c98fda29d61ed48ab4f12e83a21a661f79c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <set>
#include <string>

namespace mbgl {
namespace style {

class UpdateBatch {
public:
    std::set<std::string> sourceIDs;
};

} // namespace style
} // namespace mbgl