/* osgEarth
 * Copyright 2025 Pelican Mapping
 * MIT License
 */
#ifndef OSGEARTH_DRIVER_KML_KML_LINEARRING
#define OSGEARTH_DRIVER_KML_KML_LINEARRING 1

#include "KML_Geometry"

namespace osgEarth_kml
{
    using namespace osgEarth;

    struct KML_LinearRing : public KML_Geometry
    {
        virtual void parseStyle( xml_node<>* node, KMLContext& cs, Style& style );
        virtual void parseCoords( xml_node<>* node, KMLContext& cx );
    };

} // namespace osgEarth_kml

#endif // OSGEARTH_DRIVER_KML_KML_LINEARRING
