~ubuntu-branches/ubuntu/precise/libkipi/precise-updates

« back to all changes in this revision

Viewing changes to libkipi/libkipi/libkipi_export.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-12-06 19:35:33 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051206193533-4m4yu4ibf2v3vrl6
Tags: 0.1.2-2ubuntu2
Build-dep on newest cdbs for po directory fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    This file is part of libkipi project
 
3
    Copyright (c) 2005 Laurent Montel <montel@kde.org>
 
4
 
 
5
    This library is free software; you can redistribute it and/or
 
6
    modify it under the terms of the GNU Library General Public
 
7
    License as published by the Free Software Foundation; either
 
8
    version 2 of the License, or (at your option) any later version.
 
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 Steet, Fifth Floor,
 
18
    Boston, MA 02110-1301, USA.
 
19
*/
 
20
 
 
21
#ifndef _LIBKIPI_EXPORT_H
 
22
#define _LIBKIPI_EXPORT_H
 
23
 
 
24
#ifdef KDEMACROS_USABLE
 
25
#include <kdemacros.h>
 
26
#endif
 
27
 
 
28
#ifdef KDE_EXPORT
 
29
#define LIBKIPI_EXPORT KDE_EXPORT
 
30
#else
 
31
#define LIBKIPI_EXPORT
 
32
#endif
 
33
 
 
34
#endif /* _LIBKIPI_EXPORT_H */
 
35