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

#include "KML_Common"
#include "KML_Container"

namespace osgEarth_kml
{
    using namespace osgEarth;

    struct KML_Folder : public KML_Container
    {
        virtual void scan( xml_node<>* node, KMLContext& cx );

        virtual void scan2( xml_node<>* node, KMLContext& cx );

        virtual void build( xml_node<>* node, KMLContext& cx );
    };

} // namespace osgEarth_kml

#endif // OSGEARTH_DRIVER_KML_KML_FOLDER
