#ifndef LLMR_STYLE_STYLE_LAYER_GROUP #define LLMR_STYLE_STYLE_LAYER_GROUP #include #include namespace llmr { class StyleLayerGroup { public: void setClasses(const std::vector &class_names, timestamp now, const PropertyTransition &defaultTransition); void updateProperties(float z, timestamp t); bool hasTransitions() const; public: std::vector> layers; }; } #endif