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

#include <unordered_set>
#include <string>

namespace mbgl {
namespace style {

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

} // namespace style
} // namespace mbgl