You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@locus.apache.org on 2000/08/25 22:23:55 UTC

cvs commit: xml-xalan/c/samples/XPathWrapper XPathWrapper.hpp

dbertoni    00/08/25 13:23:55

  Modified:    c/samples/XPathWrapper XPathWrapper.hpp
  Log:
  Fixed import/export stuff for non-Windows platforms.
  
  Revision  Changes    Path
  1.3       +7 -2      xml-xalan/c/samples/XPathWrapper/XPathWrapper.hpp
  
  Index: XPathWrapper.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/samples/XPathWrapper/XPathWrapper.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XPathWrapper.hpp	2000/04/27 14:47:48	1.2
  +++ XPathWrapper.hpp	2000/08/25 20:23:52	1.3
  @@ -63,19 +63,24 @@
   #include <vector>
   
   
  +
   #include <Include/PlatformDefinitions.hpp>
   
  +
   
  -#if defined(_MSC_VER)
  +#if defined(WIN32)
   #ifdef _XPathWrapper
   #define XALAN_XPATHWRAPPER_EXPORT XALAN_PLATFORM_EXPORT
   #else
   #define XALAN_XPATHWRAPPER_EXPORT XALAN_PLATFORM_IMPORT
  -#endif
  +#else
  +#define XALAN_XPATHWRAPPER_EXPORT
   #endif
   
   
  +
   class XPathWrapperImpl;
  +
   
   
   class XALAN_XPATHWRAPPER_EXPORT XPathWrapper