~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to languages/cpp/parser/cppparserexport.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
   This file is part of the KDevelop platform
 
3
   Copyright 2004 Jaroslaw Staniek <js@iidea.pl>
 
4
   Copyright 2006 Matt Rogers <mattr@kde.org>
 
5
 
 
6
   This library is free software; you can redistribute it and/or
 
7
   modify it under the terms of the GNU Library General Public
 
8
   License version 2 as published by the Free Software Foundation.
 
9
 
 
10
   This library is distributed in the hope that it will be useful,
 
11
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
   Library General Public License for more details.
 
14
 
 
15
   You should have received a copy of the GNU Library General Public License
 
16
   along with this library; see the file COPYING.LIB.  If not, write to
 
17
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
18
   Boston, MA 02110-1301, USA.
 
19
*/
 
20
#ifndef CPPPARSEREXPORT_H
 
21
#define CPPPARSEREXPORT_H
 
22
 
 
23
/* needed for KDE_EXPORT macros */
 
24
#include <kdemacros.h>
 
25
 
 
26
#ifndef KDEVCPPPARSER_EXPORT
 
27
# ifdef MAKE_KDEV4CPPPARSER_LIB
 
28
#  define KDEVCPPPARSER_EXPORT KDE_EXPORT
 
29
# else
 
30
#  define KDEVCPPPARSER_EXPORT KDE_IMPORT
 
31
# endif
 
32
#endif
 
33
 
 
34
#ifndef KDEVCPPRPP_EXPORT
 
35
# ifdef MAKE_KDEV4CPPRPP_LIB
 
36
#  define KDEVCPPRPP_EXPORT KDE_EXPORT
 
37
# else
 
38
#  define KDEVCPPRPP_EXPORT KDE_IMPORT
 
39
# endif
 
40
#endif
 
41
 
 
42
#endif /* CPPPARSEREXPORT_H*/