source: branches/1.3/src/core/scew/scew.h @ 5675

Last change on this file since 5675 was 5675, checked in by ldelgass, 9 years ago

merge r5673 from trunk (eol-style)

  • Property svn:eol-style set to native
File size: 1.8 KB
Line 
1/**
2 *
3 * @file     scew.h
4 * @author   Aleix Conchillo Flaque <aleix@member.fsf.org>
5 * @date     Mon Nov 25, 2002 01:34
6 * @brief    SCEW main header file
7 *
8 * $Id: scew.h,v 1.1 2004/01/28 00:43:21 aleix Exp $
9 *
10 * @if copyright
11 *
12 * Copyright (C) 2002, 2003, 2004 Aleix Conchillo Flaque
13 *
14 * SCEW is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU Lesser General Public
16 * License as published by the Free Software Foundation; either
17 * version 2.1 of the License, or (at your option) any later version.
18 *
19 * SCEW is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22 * Lesser General Public License for more details.
23 *
24 * You should have received a copy of the GNU Lesser General Public
25 * License along with this library; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
27 *
28 * @endif
29 */
30
31
32#ifndef SCEW_H_ALEIX0211250134
33#define SCEW_H_ALEIX0211250134
34
35#include "attribute.h"
36#include "element.h"
37#include "error.h"
38#include "parser.h"
39#include "str.h"
40#include "tree.h"
41#include "writer.h"
42
43/* automatically include the correct library on windows */
44#ifdef _WIN32
45
46# ifdef XML_UNICODE_WCHAR_T
47#  define SCEW_LIB_U    "u"
48# else
49#  define SCEW_LIB_U
50# endif /* XML_UNICODE_WCHAR_T */
51
52# ifdef XML_STATIC
53#  define SCEW_LIB_S    "s"
54# else
55#  define SCEW_LIB_S
56# endif /* XML_STATIC */
57
58# ifdef _DEBUG
59#  define SCEW_LIB_D    "d"
60# else
61#  define SCEW_LIB_D
62# endif /* _DEBUG */
63
64# if defined(SCEW_LIB_U) || defined(SCEW_LIB_S) || defined(SCEW_LIB_D)
65# pragma comment( lib, "scew_" SCEW_LIB_U SCEW_LIB_S SCEW_LIB_D ".lib" )
66# else
67# pragma comment( lib, "scew.lib" )
68# endif
69
70#endif /* _WIN32 */
71
72#endif /* SCEW_H_ALEIX0211250134 */
Note: See TracBrowser for help on using the repository browser.