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

#include "KML_Geometry"

namespace osgEarth_kml
{
    using namespace osgEarth;

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

} // namespace osgEarth_kml

#endif // OSGEARTH_DRIVER_KML_KML_MODEL
