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

#include "KML_Common"
#include "KML_Overlay"

namespace osgEarth_kml
{
    using namespace osgEarth;

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

} // namespace osgEarth_kml

#endif // OSGEARTH_DRIVER_KML_KML_PHOTOOVERLAY
