~ubuntu-branches/ubuntu/edgy/gwenview/edgy

« back to all changes in this revision

Viewing changes to src/gvcore/libgwenview_export.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-12-06 17:59:19 UTC
  • mfrom: (1.1.3 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20051206175919-8yv9nfmw0pws6p52
Tags: 1.3.1-0ubuntu1
* Sync with Debian
* Edit kde.mk for .pot generation

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    This file is part of gwenview 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., 59 Temple Place - Suite 330,
 
18
    Boston, MA 02111-1307, USA.
 
19
*/
 
20
 
 
21
#ifndef _LIBGWENVIEW_EXPORT_H
 
22
#define _LIBGWENVIEW_EXPORT_H
 
23
 
 
24
#include <kdemacros.h>
 
25
 
 
26
#ifdef __KDE_HAVE_GCC_VISIBILITY
 
27
 
 
28
#define LIBGWENVIEW_EXPORT KDE_EXPORT
 
29
 
 
30
#else
 
31
#define LIBGWENVIEW_EXPORT
 
32
#endif
 
33
 
 
34
#endif /* _LIBGWENVIEW_EXPORT_H */
 
35
 
 
36