Marble

GeoDocument.cpp
1/*
2 SPDX-FileCopyrightText: 2008 Jens-Michael Hoffmann <jensmh@gmx.de>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#include "GeoDocument.h"
8#include <cstdio>
9
10namespace Marble
11{
12
13GeoDocument::GeoDocument() = default;
14
15GeoDocument::~GeoDocument() = default;
16
17bool GeoDocument::isGeoDataDocument() const
18{
19 return false;
20}
21
22bool GeoDocument::isGeoSceneDocument() const
23{
24 return false;
25}
26
27GeoNode::GeoNode() = default;
28
29GeoNode::~GeoNode() = default;
30}
Binds a QML item to a specific geodetic location in screen coordinates.
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.