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

#include "KML_Object"


namespace osgEarth_kml
{
    struct KML_Root
    {
        virtual void scan( xml_node<>* node, KMLContext& cx );
        virtual void scan2( xml_node<>* node, KMLContext& cx );
        virtual void build( xml_node<>* node, KMLContext& cx );

        virtual ~KML_Root() { }
    };

} // namespace osgEarth_kml

#endif // OSGEARTH_DRIVER_KML_KML_SCHEMA
