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

1//
2// This file is part of the Marble Virtual Globe.
3//
4// This program is free software licensed under the GNU LGPL. You can
5// find a copy of this license in LICENSE.txt in the top directory of
6// the source code.
7//
8// Copyright 2007 Christian Ehrlicher <ch.ehrlicher@gmx.de>
9// Copyright 2008 Patrick Spendrin <ps_ml@gmx.de>
10//
11
12#ifndef GEODATA_EXPORT_H
13#define GEODATA_EXPORT_H
14
15#include <QtGlobal>
16
17// please make sure to change MAKE_MARBLE_LIB to MAKE_GEODATA_LIB if geodata is an independent library
18#ifndef GEODATA_EXPORT
19# ifdef MAKE_MARBLE_LIB
20# define GEODATA_EXPORT Q_DECL_EXPORT
21# else
22# define GEODATA_EXPORT Q_DECL_IMPORT
23# endif
24#endif
25
26#endif // GEODATA_EXPORT_H
27

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