Warning: That file was not part of the compilation database. It may have many parsing errors.

1/*
2 Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org>
3 Copyright 2007 Murad Tagirov <tmurad@gmail.com>
4 Copyright 2007 Inge Wallin <inge@lysator.liu.se>
5
6 This file is part of the KDE project
7
8 This library is free software you can redistribute it and/or
9 modify it under the terms of the GNU Library General Public
10 License as published by the Free Software Foundation either
11 version 2 of the License, or (at your option) any later version.
12
13 This library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Library General Public License for more details.
17
18 You should have received a copy of the GNU Library General Public License
19 aint with this library see the file COPYING.LIB. If not, write to
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA.
22*/
23
24
25#ifndef MARBLE_GEODATAFOLDER_H
26#define MARBLE_GEODATAFOLDER_H
27
28
29#include "GeoDataContainer.h"
30
31#include "geodata_export.h"
32
33namespace Marble
34{
35
36/**
37 * @short A container that is used to arrange other GeoDataFeatures.
38 *
39 * A GeoDataFolder is used to arrange other GeoDataFeatures
40 * hierarchically (Folders, Placemarks, NetworkLinks, or Overlays). A
41 * GeoDataFeature is visible only if it and all its ancestors are
42 * visible.
43 *
44 * @see GeoDataFeature
45 * @see GeoDataContainer
46 */
47
48 class GeoDataFolderPrivate;
49
50class GEODATA_EXPORT GeoDataFolder : public GeoDataContainer
51{
52 public:
53 GeoDataFolder();
54 GeoDataFolder( const GeoDataFolder& other );
55 ~GeoDataFolder();
56
57 private:
58 GeoDataFolderPrivate *p() const;
59};
60
61}
62
63Q_DECLARE_METATYPE(Marble::GeoDataFolder*)
64
65#endif
66

Warning: That file was not part of the compilation database. It may have many parsing errors.