~ubuntu-branches/ubuntu/utopic/kdevelop-php/utopic

« back to all changes in this revision

Viewing changes to parser/parserexport.h

  • Committer: Bazaar Package Importer
  • Author(s): Fathi Boudra
  • Date: 2010-01-17 17:10:22 UTC
  • Revision ID: james.westby@ubuntu.com-20100117171022-q2xlgd9ekewo2ijx
Tags: upstream-1.0.0~beta2
ImportĀ upstreamĀ versionĀ 1.0.0~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   This file is part of KDevelop                                         *
 
3
 *   Copyright 2007 Andreas Pakulat <apaku@gmx.de>                         *
 
4
 *   Copyright 2006 Matt Rogers <mattr@kde.org>                            *
 
5
 *   Copyright 2004 Jaroslaw Staniek <js@iidea.pl>                         *
 
6
 *                                                                         *
 
7
 *   This program is free software; you can redistribute it and/or modify  *
 
8
 *   it under the terms of the GNU Library General Public License as       *
 
9
 *   published by the Free Software Foundation; either version 2 of the    *
 
10
 *   License, or (at your option) any later version.                       *
 
11
 *                                                                         *
 
12
 *   This program is distributed in the hope that it will be useful,       *
 
13
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
14
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
15
 *   GNU General Public License for more details.                          *
 
16
 *                                                                         *
 
17
 *   You should have received a copy of the GNU Library General Public     *
 
18
 *   License along with this program; if not, write to the                 *
 
19
 *   Free Software Foundation, Inc.,                                       *
 
20
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
 
21
 ***************************************************************************/
 
22
 
 
23
#ifndef PARSEREXPORT_H
 
24
#define PARSEREXPORT_H
 
25
 
 
26
/* needed for KDE_EXPORT macros */
 
27
#include <kdemacros.h>
 
28
 
 
29
 
 
30
#ifndef KDEVPHPPARSER_EXPORT
 
31
# ifdef MAKE_KDEV4PHPPARSER_LIB
 
32
#  define KDEVPHPPARSER_EXPORT KDE_EXPORT
 
33
# else
 
34
#  define KDEVPHPPARSER_EXPORT KDE_IMPORT
 
35
# endif
 
36
#endif
 
37
 
 
38
#endif
 
39
 
 
40
//kate: space-indent on; indent-width 4; replace-tabs on; auto-insert-doxygen on; indent-mode cstyle;