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

namespace mbgl {

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

}