~ubuntu-branches/ubuntu/trusty/kdepimlibs/trusty

« back to all changes in this revision

Viewing changes to kxmlrpcclient/kxmlrpcclient_export.h

  • Committer: Package Import Robot
  • Author(s): Rohan Garg, Rohan Garg, Philip Muškovac
  • Date: 2013-11-23 17:36:44 UTC
  • mfrom: (1.1.102)
  • Revision ID: package-import@ubuntu.com-20131123173644-p5ow94192ezsny8g
Tags: 4:4.11.80-0ubuntu1
[ Rohan Garg ]
* New upstream beta release
  - Bump akonadi requirement to 1.10.45
  - Update install files
  - Update symbols

[ Philip Muškovac ]
* kdepimlibs-dev/-dbg breaks/replaces kdepim-runtime/-dbg (<< 4:4.11.80)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/******************************************************************************
2
 
 *   Copyright (C) 2006 by Narayan Newton <narayannewton@gmail.com>           *
3
 
 *                                                                            *
4
 
 * This program is distributed in the hope that it will be useful, but        *
5
 
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
6
 
 * or FITNESS FOR A PARTICULAR PURPOSE. For licensing and distribution        *
7
 
 * details, check the accompanying file 'COPYING.BSD'.                        *
8
 
 *****************************************************************************/
9
 
 
10
 
#ifndef KXMLRPCCLIENT_EXPORT_H
11
 
#define KXMLRPCCLIENT_EXPORT_H
12
 
 
13
 
#include <kdemacros.h>
14
 
 
15
 
#ifndef KXMLRPCCLIENT_EXPORT
16
 
# if defined(KDEPIM_STATIC_LIBS)
17
 
   /* No export/import for static libraries */
18
 
#  define KXMLRPCCLIENT_EXPORT
19
 
# elif defined(MAKE_KXMLRPCCLIENT_LIB)
20
 
   /* We are building this library */
21
 
#  define KXMLRPCCLIENT_EXPORT KDE_EXPORT
22
 
# else
23
 
   /* We are using this library */
24
 
#  define KXMLRPCCLIENT_EXPORT KDE_IMPORT
25
 
# endif
26
 
#endif
27
 
 
28
 
#endif
29