Marble

KmlTourTagWriter.cpp
1// SPDX-License-Identifier: LGPL-2.1-or-later
2//
3// SPDX-FileCopyrightText: 2013 Adrian Draghici <draghici.adrian.b@gmail.com>
4//
5
6#include "KmlTourTagWriter.h"
7
8#include "GeoDataPlaylist.h"
9#include "GeoDataTour.h"
10#include "GeoDataTypes.h"
11#include "GeoWriter.h"
12#include "KmlElementDictionary.h"
13
14namespace Marble
15{
16
17static GeoTagWriterRegistrar s_writerTour(GeoTagWriter::QualifiedName(QString::fromLatin1(GeoDataTypes::GeoDataTourType),
18 QString::fromLatin1(kml::kmlTag_nameSpaceOgc22)),
19 new KmlTourTagWriter);
20
21bool KmlTourTagWriter::writeMid(const GeoNode *node, GeoWriter &writer) const
22{
23 const auto tour = static_cast<const GeoDataTour *>(node);
24 if (tour->playlist()) {
25 writeElement(tour->playlist(), writer);
26 }
27 return true;
28}
29
30KmlTourTagWriter::KmlTourTagWriter()
31 : KmlFeatureTagWriter(QStringLiteral("gx:Tour"))
32{
33 // nothing to do
34}
35
36}
QPair< QString, QString > QualifiedName
Object Name and Namespace Pair This type is intended to be used in a similar way to.
Binds a QML item to a specific geodetic location in screen coordinates.
QString fromLatin1(QByteArrayView str)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 4 2024 16:37:03 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.