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

#include "KML_Common"
#include "KML_Feature"

namespace osgEarth_kml
{
    using namespace osgEarth;

    struct KML_Overlay : public KML_Feature
    {
        virtual void scan( xml_node<>* node, KMLContext& cx );
        virtual void build( xml_node<>* node, KMLContext& cx, osg::Node* working );
    };

} // namespace osgEarth_kml

#endif // OSGEARTH_DRIVER_KML_KML_OVERLAY
