~ubuntu-branches/ubuntu/lucid/kde4libs/lucid-updates

« back to all changes in this revision

Viewing changes to kate/katepartprivate_export.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2010-01-19 20:32:41 UTC
  • mfrom: (1.1.42 upstream)
  • Revision ID: james.westby@ubuntu.com-20100119203241-6qlz4p6emiawose6
Tags: 4:4.3.95-0ubuntu1
* New upstream release candidate:
  - Remove kubuntu_71_knewstuff_crashes.diff, applied upstream
  - Remove kubuntu_72_popupapplet_crash_fix.diff, applied upstream
  - Refresh kubuntu_70_dbusmenu.diff
  - Bump RUNTIME_DEPS value in debian/rules to 4.3.90
  - Update .install files

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * This file is a part of the rekonq project
3
 
 *
4
 
 * Copyright (C) 2007 David Faure <faure@kde.org>
5
 
 * Copyright (C) 2009 by Bernhard Beschow <bbeschow@cs.tu-berlin.de>
6
 
 *
7
 
 *
8
 
 * This program is free software; you can redistribute it and/or
9
 
 * modify it under the terms of the GNU General Public License as
10
 
 * published by the Free Software Foundation; either version 2 of
11
 
 * the License or (at your option) version 3 or any later version
12
 
 * accepted by the membership of KDE e.V. (or its successor approved
13
 
 * by the membership of KDE e.V.), which shall act as a proxy
14
 
 * defined in Section 14 of version 3 of the license.
15
 
 *
16
 
 * This program is distributed in the hope that it will be useful,
17
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
 
 * GNU General Public License for more details.
20
 
 *
21
 
 * You should have received a copy of the GNU General Public License
22
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23
 
 *
24
 
 */
25
 
#ifndef KATEPARTPRIVATE_EXPORT_H
26
 
#define KATEPARTPRIVATE_EXPORT_H
27
 
 
28
 
/* needed for KDE_EXPORT and KDE_IMPORT macros */
29
 
#include <kdemacros.h>
30
 
 
31
 
/* Classes from the kate part, which are exported only for unit tests */
32
 
#ifdef COMPILE_TESTS
33
 
  #ifndef KATEPART_TESTS_EXPORT
34
 
    /* We are building this library */
35
 
    #define KATEPART_TESTS_EXPORT KDE_EXPORT
36
 
  #else
37
 
    /* We are using this library */
38
 
    #define KATEPART_TESTS_EXPORT KDE_IMPORT
39
 
  #endif
40
 
#else
41
 
  /* We are not compiling tests */
42
 
  #define KATEPART_TESTS_EXPORT
43
 
#endif
44
 
 
45
 
#endif  // KATEPARTPRIVATE_EXPORT_H