summaryrefslogtreecommitdiff
path: root/src/mbgl/style/class_properties.cpp
blob: 6122072220d7f5db13fbb26886378e57f42b4864 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <mbgl/style/class_properties.hpp>

namespace mbgl {

PropertyTransition ClassProperties::getTransition(PropertyKey key) const {
    auto it = transitions.find(key);
    if (it == transitions.end()) {
        return PropertyTransition();
    } else {
        return it->second;
    }
}

}