File: export.h

package info (click to toggle)
tagua 1.0~alpha2-9
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 7,924 kB
  • ctags: 7,180
  • sloc: cpp: 26,148; ansic: 13,039; makefile: 228; ruby: 87; sh: 39
file content (26 lines) | stat: -rw-r--r-- 691 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
  Copyright (c) 2007 Paolo Capriotti <p.capriotti@gmail.com>
            (c) 2007 Maurizio Monge <maurizio.monge@kdemail.net>

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.
*/

#ifndef EXPORT_H
#define EXPORT_H

#include <kdemacros.h>

#ifdef TAGUA_DEBUG
  #ifdef MAKE_TAGUAPRIVATE_LIB
    #define TAGUA_EXPORT KDE_EXPORT
  #else
    #define TAGUA_EXPORT KDE_IMPORT
  #endif // MAKE_TAGUAPRIVATE_LIB
#else // TAGUA_DEBUG
  #define TAGUA_EXPORT
#endif // TAGUA_DEBUG

#endif // EXPORT_H