VCPPDefs.hpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:8k
源码类别:

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2001 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 1999, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /*
  57.  * $Log: VCPPDefs.hpp,v $
  58.  * Revision 1.13  2001/06/04 20:11:54  tng
  59.  * IDOM: Complete IDNodeIterator, IDTreeWalker, IDNodeFilter.
  60.  *
  61.  * Revision 1.12  2001/06/04 13:45:06  tng
  62.  * The "hash" argument clashes with STL hash.  Fixed by Pei Yong Zhang.
  63.  *
  64.  * Revision 1.11  2001/05/29 18:50:24  tng
  65.  * IDOM: call allocate directly for array allocation to avoid overloading operator new[] which leads to compilation error on SUN CC 4.2
  66.  *
  67.  * Revision 1.10  2001/05/28 20:59:21  tng
  68.  * IDOM: move operator new[] to VCPPDefs as only Windows VCPP requires its presense
  69.  *
  70.  * Revision 1.9  2001/05/23 20:35:03  tng
  71.  * IDOM: Move operator delete to VCPPDefs.hpp as only VCPP needs a matching delete operator.
  72.  *
  73.  * Revision 1.8  2001/03/02 20:53:08  knoaman
  74.  * Schema: Regular expression - misc. updates for error messages,
  75.  * and additions of new functions to XMLString class.
  76.  *
  77.  * Revision 1.7  2000/06/16 21:13:23  rahulj
  78.  * Add 'D' suffix to the library name for the 'DEBUG' build
  79.  * configuration.
  80.  *
  81.  * Revision 1.6  2000/03/02 19:55:09  roddey
  82.  * This checkin includes many changes done while waiting for the
  83.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  84.  * available elsewhere.
  85.  *
  86.  * Revision 1.5  2000/02/06 07:48:18  rahulj
  87.  * Year 2K copyright swat.
  88.  *
  89.  * Revision 1.4  2000/01/14 01:19:22  roddey
  90.  * Added a define of XML_LSTRSUPPORT to indicate supoprt of L"" type
  91.  * prefixes on this compiler.
  92.  *
  93.  * Revision 1.3  2000/01/14 00:51:30  roddey
  94.  * Added the requested XMLStrL() macro to support some portable
  95.  * optimization of DOM code. This still needs to be added to the other
  96.  * per-compiler files.
  97.  *
  98.  * Revision 1.2  1999/11/10 21:26:14  abagchi
  99.  * Changed the DLL name
  100.  *
  101.  * Revision 1.1.1.1  1999/11/09 01:07:41  twl
  102.  * Initial checkin
  103.  *
  104.  * Revision 1.3  1999/11/08 20:45:25  rahul
  105.  * Swat for adding in Product name and CVS comment log variable.
  106.  *
  107.  */
  108. // ---------------------------------------------------------------------------
  109. //  A define in the build for each project is also used to control whether
  110. //  the export keyword is from the project's viewpoint or the client's.
  111. //  These defines provide the platform specific keywords that they need
  112. //  to do this.
  113. // ---------------------------------------------------------------------------
  114. #define PLATFORM_EXPORT     __declspec(dllexport)
  115. #define PLATFORM_IMPORT     __declspec(dllimport)
  116. // ---------------------------------------------------------------------------
  117. //  Each compiler might support L"" prefixed constants. There are places
  118. //  where it is advantageous to use the L"" where it supported, to avoid
  119. //  unnecessary transcoding. VC++ does support this, so we define this token.
  120. //  If your compiler does not support it, don't define this.
  121. // ---------------------------------------------------------------------------
  122. #define XML_LSTRSUPPORT
  123. // ---------------------------------------------------------------------------
  124. //  Indicate that we support native bools
  125. // ---------------------------------------------------------------------------
  126. // #define NO_NATIVE_BOOL
  127. // ---------------------------------------------------------------------------
  128. //  Define our version of the XMLCh. XMLCh should be mapped to the native
  129. //  wide char type (whatever wchar_t is.) In VC++, wchar_t is not an
  130. //  intrinsic type and is just mapped to unsigned short.
  131. // ---------------------------------------------------------------------------
  132. typedef unsigned short  XMLCh;
  133. typedef unsigned short  UTF16Ch;
  134. // ---------------------------------------------------------------------------
  135. //  Define unsigned 16 and 32 bits integers
  136. // ---------------------------------------------------------------------------
  137. typedef unsigned short  XMLUInt16;
  138. typedef unsigned int    XMLUInt32;
  139. // ---------------------------------------------------------------------------
  140. //  Define signed 32 bits integers
  141. // ---------------------------------------------------------------------------
  142. typedef int             XMLInt32;
  143. // ---------------------------------------------------------------------------
  144. //  Force on the Xerces debug token if it was on in the build environment
  145. // ---------------------------------------------------------------------------
  146. #if defined(_DEBUG)
  147. #define XERCES_DEBUG
  148. #endif
  149. // ---------------------------------------------------------------------------
  150. //  The name of the DLL that is built by the Visual C++ version of the
  151. //  system. We append a previously defined token which holds the DLL
  152. //  versioning string. This is defined in XercesDefs.hpp which is what this
  153. //  file is included into.
  154. // ---------------------------------------------------------------------------
  155. #if defined(XERCES_DEBUG)
  156. const char* const Xerces_DLLName = "xerces-c_" Xerces_DLLVersionStr "D";
  157. #else
  158. const char* const Xerces_DLLName = "xerces-c_" Xerces_DLLVersionStr;
  159. #endif
  160. // ---------------------------------------------------------------------------
  161. //  For IDOM:
  162. //  Bypass compiler warning:
  163. //    no matching operator delete found; memory will not be freed if initialization throws an exception
  164. // ---------------------------------------------------------------------------
  165. #if _MSC_VER == 1200 /* VC++ 6.0 */
  166. class IDOM_Document;
  167. inline void operator delete(void* ptr, IDOM_Document *doc)
  168. {
  169.     return;
  170. }
  171. #endif