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...@apache.org on 2002/11/20 03:32:14 UTC

cvs commit: xml-xalan/c/src/XMLSupport FormatterToDOM.cpp FormatterToDOM.hpp FormatterToHTML.cpp FormatterToHTML.hpp FormatterToNull.cpp FormatterToNull.hpp FormatterToText.cpp FormatterToText.hpp FormatterToXML.cpp FormatterToXML.hpp FormatterTreeWalker.cpp FormatterTreeWalker.hpp XMLParserLiaison.cpp XMLParserLiaison.hpp XMLSupportDefinitions.hpp XMLSupportException.cpp XMLSupportException.hpp XMLSupportInit.cpp XMLSupportInit.hpp XalanHTMLElementsProperties.cpp XalanHTMLElementsProperties.hpp

dbertoni    2002/11/19 18:32:14

  Modified:    c/src/XMLSupport FormatterToDOM.cpp FormatterToDOM.hpp
                        FormatterToHTML.cpp FormatterToHTML.hpp
                        FormatterToNull.cpp FormatterToNull.hpp
                        FormatterToText.cpp FormatterToText.hpp
                        FormatterToXML.cpp FormatterToXML.hpp
                        FormatterTreeWalker.cpp FormatterTreeWalker.hpp
                        XMLParserLiaison.cpp XMLParserLiaison.hpp
                        XMLSupportDefinitions.hpp XMLSupportException.cpp
                        XMLSupportException.hpp XMLSupportInit.cpp
                        XMLSupportInit.hpp XalanHTMLElementsProperties.cpp
                        XalanHTMLElementsProperties.hpp
  Log:
  Updates for new C++ namespace support.
  
  Revision  Changes    Path
  1.20      +14 -6     xml-xalan/c/src/XMLSupport/FormatterToDOM.cpp
  
  Index: FormatterToDOM.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/FormatterToDOM.cpp,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- FormatterToDOM.cpp	5 Sep 2002 01:39:05 -0000	1.19
  +++ FormatterToDOM.cpp	20 Nov 2002 02:32:13 -0000	1.20
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights 
  + * Copyright (c) 1999-2002 The Apache Software Foundation.  All rights 
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -84,6 +84,10 @@
   
   
   
  +XALAN_CPP_NAMESPACE_BEGIN
  +
  +
  +
   const XalanDOMString	FormatterToDOM::s_emptyString;
   
   
  @@ -128,7 +132,7 @@
   
   
   void
  -FormatterToDOM::setDocumentLocator(const Locator* const		/* locator */)
  +FormatterToDOM::setDocumentLocator(const LocatorType* const		/* locator */)
   {
   	// No action for the moment.
   }
  @@ -154,7 +158,7 @@
   void
   FormatterToDOM::startElement(
   			const	XMLCh* const	name,
  -			AttributeList&			attrs)
  +			AttributeListType&		attrs)
   {
   	XalanElement* const		elem = createElement(name, attrs);
   	assert(elem != 0);
  @@ -303,7 +307,7 @@
   XalanElement*
   FormatterToDOM::createElement(
   			const XalanDOMChar*		theElementName,
  -			AttributeList&			attrs)
  +			AttributeListType&		attrs)
   {
   	XalanElement*	theElement = 0;
   
  @@ -340,8 +344,8 @@
   
   void
   FormatterToDOM::addAttributes(
  -			XalanElement*	theElement,
  -			AttributeList&	attrs)
  +			XalanElement*		theElement,
  +			AttributeListType&	attrs)
   {
   	const unsigned int	nAtts = attrs.getLength();
   
  @@ -407,3 +411,7 @@
   		return thePrefixResolver.getNamespaceForPrefix(thePrefix);
   	}
   }
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
  
  
  
  1.17      +14 -6     xml-xalan/c/src/XMLSupport/FormatterToDOM.hpp
  
  Index: FormatterToDOM.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/FormatterToDOM.hpp,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- FormatterToDOM.hpp	29 Jun 2001 18:45:48 -0000	1.16
  +++ FormatterToDOM.hpp	20 Nov 2002 02:32:13 -0000	1.17
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights 
  + * Copyright (c) 1999-2002 The Apache Software Foundation.  All rights 
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -77,6 +77,10 @@
   
   
   
  +XALAN_CPP_NAMESPACE_BEGIN
  +
  +
  +
   class XalanDocument;
   class XalanDocumentFragment;
   class XalanElement;
  @@ -139,7 +143,7 @@
   	entityReference(const XMLCh* const	name);
   
   	virtual void
  -	setDocumentLocator(const Locator* const		locator);
  +	setDocumentLocator(const LocatorType* const		locator);
   
   	virtual void
   	startDocument();
  @@ -150,7 +154,7 @@
   	virtual void
   	startElement(
   				const	XMLCh* const	name,
  -				AttributeList&			attrs);
  +				AttributeListType&		attrs);
   
   	virtual void
   	endElement(const XMLCh* const	name);
  @@ -227,12 +231,12 @@
   	XalanElement*
   	createElement(
   			const XalanDOMChar*		theElementName,
  -			AttributeList&			attrs);
  +			AttributeListType&		attrs);
   
   	void
   	addAttributes(
  -			XalanElement*	theElement,
  -			AttributeList&	attrs);
  +			XalanElement*		theElement,
  +			AttributeListType&	attrs);
   
   	const XalanDOMString*
   	getNamespaceForPrefix(
  @@ -262,6 +266,10 @@
   
   	static const XalanDOMString		s_emptyString;
   };
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
   
   
   
  
  
  
  1.79      +9 -1      xml-xalan/c/src/XMLSupport/FormatterToHTML.cpp
  
  Index: FormatterToHTML.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/FormatterToHTML.cpp,v
  retrieving revision 1.78
  retrieving revision 1.79
  diff -u -r1.78 -r1.79
  --- FormatterToHTML.cpp	19 Nov 2002 22:50:15 -0000	1.78
  +++ FormatterToHTML.cpp	20 Nov 2002 02:32:13 -0000	1.79
  @@ -91,6 +91,10 @@
   
   
   
  +XALAN_CPP_NAMESPACE_BEGIN
  +
  +
  +
   const XalanDOMString	FormatterToHTML::s_emptyString;
   
   
  @@ -273,7 +277,7 @@
   void
   FormatterToHTML::startElement(
   			const XMLCh* const	name,
  -			AttributeList&		attrs)
  +			AttributeListType&	attrs)
   {
   	if (pushHasNamespace(name) == true)
   	{
  @@ -1537,3 +1541,7 @@
   
   const FormatterToHTML::size_type		FormatterToHTML::s_metaStringLength =
   		FHTML_SIZE(s_metaString);
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
  
  
  
  1.37      +9 -1      xml-xalan/c/src/XMLSupport/FormatterToHTML.hpp
  
  Index: FormatterToHTML.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/FormatterToHTML.hpp,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- FormatterToHTML.hpp	19 Nov 2002 22:50:16 -0000	1.36
  +++ FormatterToHTML.hpp	20 Nov 2002 02:32:13 -0000	1.37
  @@ -81,6 +81,10 @@
   
   
   
  +XALAN_CPP_NAMESPACE_BEGIN
  +
  +
  +
   /**
    * FormatterToHTML formats SAX-style events into HTML.
    */
  @@ -135,7 +139,7 @@
   	virtual void
   	startElement(
   			const	XMLCh* const	name,
  -			AttributeList&			attrs);
  +			AttributeListType&		attrs);
   
       virtual void
   	endElement(const XMLCh* const	name);
  @@ -365,6 +369,10 @@
   
   	static const Entity* const		s_lastEntity;
   };
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
   
   
   
  
  
  
  1.2       +12 -4     xml-xalan/c/src/XMLSupport/FormatterToNull.cpp
  
  Index: FormatterToNull.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/FormatterToNull.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- FormatterToNull.cpp	2 Nov 2000 01:45:51 -0000	1.1
  +++ FormatterToNull.cpp	20 Nov 2002 02:32:13 -0000	1.2
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 1999-2000 The Apache Software Foundation.  All rights 
  + * Copyright (c) 1999-2002 The Apache Software Foundation.  All rights 
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -59,6 +59,10 @@
   
   
   
  +XALAN_CPP_NAMESPACE_BEGIN
  +
  +
  +
   FormatterToNull::FormatterToNull() :
   	FormatterListener(OUTPUT_METHOD_NONE)
   {
  @@ -73,7 +77,7 @@
   
   
   void
  -FormatterToNull::setDocumentLocator(const Locator* const	/* locator */)
  +FormatterToNull::setDocumentLocator(const LocatorType* const	/* locator */)
   {
   }
   
  @@ -95,8 +99,8 @@
   
   void
   FormatterToNull::startElement(
  -			const	XMLCh* const	/* name */,
  -			AttributeList&			/* attrs */)
  +			const XMLCh* const	/* name */,
  +			AttributeListType&	/* attrs */)
   {
   }
   
  @@ -172,3 +176,7 @@
   			const unsigned int 	/* length */)
   {
   }
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
  
  
  
  1.3       +12 -4     xml-xalan/c/src/XMLSupport/FormatterToNull.hpp
  
  Index: FormatterToNull.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/FormatterToNull.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- FormatterToNull.hpp	2 May 2001 15:43:12 -0000	1.2
  +++ FormatterToNull.hpp	20 Nov 2002 02:32:13 -0000	1.3
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 1999-2000 The Apache Software Foundation.  All rights 
  + * Copyright (c) 1999-2002 The Apache Software Foundation.  All rights 
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -69,6 +69,10 @@
   
   
   
  +XALAN_CPP_NAMESPACE_BEGIN
  +
  +
  +
   /**
    * This class takes SAX events (in addition to some extra events 
    * that SAX doesn't handle yet) and produces absolutely nothing.
  @@ -92,7 +96,7 @@
   	// These methods are inherited from FormatterListener ...
   
   	virtual void
  -	setDocumentLocator(const Locator* const		locator);
  +	setDocumentLocator(const LocatorType* const		locator);
   
   	virtual void
   	startDocument();
  @@ -102,8 +106,8 @@
   
   	virtual void
   	startElement(
  -			const	XMLCh* const	name,
  -			AttributeList&			attrs);
  +			const XMLCh* const	name,
  +			AttributeListType&	attrs);
   
       virtual void
   	endElement(const XMLCh* const	name);
  @@ -154,6 +158,10 @@
   	bool
   	operator==(const FormatterToNull&) const;
   };
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
   
   
   
  
  
  
  1.18      +10 -2     xml-xalan/c/src/XMLSupport/FormatterToText.cpp
  
  Index: FormatterToText.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/FormatterToText.cpp,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- FormatterToText.cpp	20 May 2002 18:21:46 -0000	1.17
  +++ FormatterToText.cpp	20 Nov 2002 02:32:13 -0000	1.18
  @@ -68,6 +68,10 @@
   
   
   
  +XALAN_CPP_NAMESPACE_BEGIN
  +
  +
  +
   FormatterToText::FormatterToText() :
   	FormatterListener(OUTPUT_METHOD_TEXT),
   	m_writer(0),
  @@ -134,7 +138,7 @@
   
   
   void
  -FormatterToText::setDocumentLocator(const Locator* const	/* locator */)
  +FormatterToText::setDocumentLocator(const LocatorType* const	/* locator */)
   {
   	// No action for the moment.
   }
  @@ -164,7 +168,7 @@
   void
   FormatterToText::startElement(
   			const	XMLCh* const	/* name */,
  -			AttributeList&			/* attrs */)
  +			AttributeListType&		/* attrs */)
   {
   	// No action for the moment.
   }
  @@ -319,3 +323,7 @@
   		m_maxCharacter = XalanTranscodingServices::getMaximumCharacterValue(theStream->getOutputEncoding());
   	}
   }
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
  
  
  
  1.12      +12 -5     xml-xalan/c/src/XMLSupport/FormatterToText.hpp
  
  Index: FormatterToText.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/FormatterToText.hpp,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- FormatterToText.hpp	27 Jul 2001 05:32:12 -0000	1.11
  +++ FormatterToText.hpp	20 Nov 2002 02:32:13 -0000	1.12
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights 
  + * Copyright (c) 1999-2002 The Apache Software Foundation.  All rights 
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -73,8 +73,11 @@
   
   
   
  +XALAN_CPP_NAMESPACE_BEGIN
  +
  +
  +
   class Writer;
  -class Locator;
   
   
   
  @@ -191,7 +194,7 @@
   	// These methods are inherited from FormatterListener ...
   
   	virtual void
  -	setDocumentLocator(const Locator* const		locator);
  +	setDocumentLocator(const LocatorType* const		locator);
   
   	virtual void
   	startDocument();
  @@ -201,8 +204,8 @@
   
   	virtual void
   	startElement(
  -			const	XMLCh* const	name,
  -			AttributeList&			attrs);
  +			const XMLCh* const	name,
  +			AttributeListType&	attrs);
   
       virtual void
   	endElement(const XMLCh* const	name);
  @@ -270,6 +273,10 @@
   
   	bool			m_handleIgnorableWhitespace;
   };
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
   
   
   
  
  
  
  1.64      +12 -2     xml-xalan/c/src/XMLSupport/FormatterToXML.cpp
  
  Index: FormatterToXML.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/FormatterToXML.cpp,v
  retrieving revision 1.63
  retrieving revision 1.64
  diff -u -r1.63 -r1.64
  --- FormatterToXML.cpp	19 Nov 2002 22:50:16 -0000	1.63
  +++ FormatterToXML.cpp	20 Nov 2002 02:32:13 -0000	1.64
  @@ -77,6 +77,10 @@
   
   
   
  +XALAN_CPP_NAMESPACE_BEGIN
  +
  +
  +
   static const XalanDOMChar 	theDefaultAttrSpecialChars[] =
   {
   	XalanUnicode::charLessThanSign,
  @@ -733,6 +737,8 @@
   
   
   
  +XALAN_USING_XERCES(SAXException)
  +
   void
   FormatterToXML::throwInvalidUTF16SurrogateException(XalanDOMChar	ch)
   {
  @@ -915,7 +921,7 @@
   
   
   void
  -FormatterToXML::setDocumentLocator(const Locator* const 	/* locator */)
  +FormatterToXML::setDocumentLocator(const LocatorType* const 	/* locator */)
   {
   	// I don't do anything with this yet.
   }
  @@ -987,7 +993,7 @@
   void
   FormatterToXML::startElement(
   			const XMLCh* const	name,
  -			AttributeList&		attrs)
  +			AttributeListType&	attrs)
   {
       if(m_inEntityRef == false)
   	{
  @@ -1890,3 +1896,7 @@
   
   
   const FormatterToXML::DOMCharBufferType::size_type	FormatterToXML::s_maxBufferSize = 512;
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
  
  
  
  1.39      +10 -3     xml-xalan/c/src/XMLSupport/FormatterToXML.hpp
  
  Index: FormatterToXML.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/FormatterToXML.hpp,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- FormatterToXML.hpp	19 Nov 2002 22:50:16 -0000	1.38
  +++ FormatterToXML.hpp	20 Nov 2002 02:32:13 -0000	1.39
  @@ -83,7 +83,10 @@
   
   
   
  -class AttributeList;
  +XALAN_CPP_NAMESPACE_BEGIN
  +
  +
  +
   class Writer;
   class XalanOutputStream;
   
  @@ -143,7 +146,7 @@
   	// These methods are inherited from FormatterListener ...
   
   	virtual void
  -	setDocumentLocator(const Locator* const		locator);
  +	setDocumentLocator(const LocatorType* const		locator);
   
   	virtual void
   	startDocument();
  @@ -154,7 +157,7 @@
   	virtual void
   	startElement(
   			const XMLCh* const	name,
  -			AttributeList&		attrs);
  +			AttributeListType&	attrs);
   
       virtual void
   	endElement(const XMLCh* const	name);
  @@ -1198,6 +1201,10 @@
   	 */
   	FlushFunctionType			m_flushFunction;
   };
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
   
   
   
  
  
  
  1.7       +9 -1      xml-xalan/c/src/XMLSupport/FormatterTreeWalker.cpp
  
  Index: FormatterTreeWalker.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/FormatterTreeWalker.cpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- FormatterTreeWalker.cpp	25 Sep 2001 21:13:17 -0000	1.6
  +++ FormatterTreeWalker.cpp	20 Nov 2002 02:32:13 -0000	1.7
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights 
  + * Copyright (c) 1999-2002 The Apache Software Foundation.  All rights 
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -78,6 +78,10 @@
   
   
   
  +XALAN_CPP_NAMESPACE_BEGIN
  +
  +
  +
   FormatterTreeWalker::FormatterTreeWalker(FormatterListener& 	formatterListener) :
   	TreeWalker(),
   	m_formatterListener(formatterListener)
  @@ -245,3 +249,7 @@
   	endNode(const_cast<const XalanNode*>(node));
   #endif
   }
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
  
  
  
  1.4       +9 -1      xml-xalan/c/src/XMLSupport/FormatterTreeWalker.hpp
  
  Index: FormatterTreeWalker.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/FormatterTreeWalker.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- FormatterTreeWalker.hpp	11 Apr 2000 14:43:02 -0000	1.3
  +++ FormatterTreeWalker.hpp	20 Nov 2002 02:32:13 -0000	1.4
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights 
  + * Copyright (c) 1999-2002 The Apache Software Foundation.  All rights 
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -68,6 +68,10 @@
   
   
   
  +XALAN_CPP_NAMESPACE_BEGIN
  +
  +
  +
   class FormatterListener;
   
   
  @@ -105,6 +109,10 @@
   
   	FormatterListener&	m_formatterListener;
   };
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
   
   
   
  
  
  
  1.2       +9 -1      xml-xalan/c/src/XMLSupport/XMLParserLiaison.cpp
  
  Index: XMLParserLiaison.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/XMLParserLiaison.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XMLParserLiaison.cpp	18 Dec 1999 19:47:52 -0000	1.1
  +++ XMLParserLiaison.cpp	20 Nov 2002 02:32:13 -0000	1.2
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights 
  + * Copyright (c) 1999-2002 The Apache Software Foundation.  All rights 
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -59,6 +59,10 @@
   
   
   
  +XALAN_CPP_NAMESPACE_BEGIN
  +
  +
  +
   XMLParserLiaison::XMLParserLiaison()
   {
   }
  @@ -68,3 +72,7 @@
   XMLParserLiaison::~XMLParserLiaison()
   {
   }
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
  
  
  
  1.18      +7 -3      xml-xalan/c/src/XMLSupport/XMLParserLiaison.hpp
  
  Index: XMLParserLiaison.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/XMLParserLiaison.hpp,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- XMLParserLiaison.hpp	6 Apr 2002 19:37:30 -0000	1.17
  +++ XMLParserLiaison.hpp	20 Nov 2002 02:32:13 -0000	1.18
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights 
  + * Copyright (c) 1999-2002 The Apache Software Foundation.  All rights 
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -68,7 +68,7 @@
   
   
   
  -#include <PlatformSupport/Resettable.hpp>
  +XALAN_CPP_NAMESPACE_BEGIN
   
   
   
  @@ -84,7 +84,7 @@
   
   
   
  -class XALAN_XMLSUPPORT_EXPORT XMLParserLiaison : public Resettable
  +class XALAN_XMLSUPPORT_EXPORT XMLParserLiaison
   {
   public:
   
  @@ -268,6 +268,10 @@
   	XMLParserLiaison&
   	operator=(const XMLParserLiaison&);
   };
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
   
   
   
  
  
  
  1.3       +1 -1      xml-xalan/c/src/XMLSupport/XMLSupportDefinitions.hpp
  
  Index: XMLSupportDefinitions.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/XMLSupportDefinitions.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XMLSupportDefinitions.hpp	28 Jan 2000 14:52:00 -0000	1.2
  +++ XMLSupportDefinitions.hpp	20 Nov 2002 02:32:13 -0000	1.3
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights 
  + * Copyright (c) 1999-2002 The Apache Software Foundation.  All rights 
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.3       +9 -1      xml-xalan/c/src/XMLSupport/XMLSupportException.cpp
  
  Index: XMLSupportException.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/XMLSupportException.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XMLSupportException.cpp	11 Apr 2000 14:43:02 -0000	1.2
  +++ XMLSupportException.cpp	20 Nov 2002 02:32:13 -0000	1.3
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights 
  + * Copyright (c) 1999-2002 The Apache Software Foundation.  All rights 
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -60,6 +60,10 @@
   
   
   
  +XALAN_CPP_NAMESPACE_BEGIN
  +
  +
  +
   XMLSupportException::XMLSupportException(const XalanDOMString&	message) :
   	XSLException(message)
   {
  @@ -70,3 +74,7 @@
   XMLSupportException::~XMLSupportException()
   {
   }
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
  
  
  
  1.4       +9 -1      xml-xalan/c/src/XMLSupport/XMLSupportException.hpp
  
  Index: XMLSupportException.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/XMLSupportException.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XMLSupportException.hpp	11 Apr 2000 14:43:02 -0000	1.3
  +++ XMLSupportException.hpp	20 Nov 2002 02:32:13 -0000	1.4
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights 
  + * Copyright (c) 1999-2002 The Apache Software Foundation.  All rights 
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -73,6 +73,10 @@
   
   
   
  +XALAN_CPP_NAMESPACE_BEGIN
  +
  +
  +
   class XALAN_XMLSUPPORT_EXPORT XMLSupportException : public XSLException
   {
   public:
  @@ -91,6 +95,10 @@
   
   private:
   };
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
   
   
   
  
  
  
  1.7       +8 -0      xml-xalan/c/src/XMLSupport/XMLSupportInit.cpp
  
  Index: XMLSupportInit.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/XMLSupportInit.cpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- XMLSupportInit.cpp	5 Sep 2002 22:01:29 -0000	1.6
  +++ XMLSupportInit.cpp	20 Nov 2002 02:32:13 -0000	1.7
  @@ -59,6 +59,10 @@
   
   
   
  +XALAN_CPP_NAMESPACE_BEGIN
  +
  +
  +
   unsigned long	XMLSupportInit::s_initCounter = 0;
   
   
  @@ -100,3 +104,7 @@
   XMLSupportInit::terminate()
   {
   }
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
  
  
  
  1.2       +9 -1      xml-xalan/c/src/XMLSupport/XMLSupportInit.hpp
  
  Index: XMLSupportInit.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/XMLSupportInit.hpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XMLSupportInit.hpp	31 Aug 2000 19:42:59 -0000	1.1
  +++ XMLSupportInit.hpp	20 Nov 2002 02:32:13 -0000	1.2
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 2000 The Apache Software Foundation.  All rights 
  + * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights 
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -73,6 +73,10 @@
   
   
   
  +XALAN_CPP_NAMESPACE_BEGIN
  +
  +
  +
   class XALAN_XMLSUPPORT_EXPORT XMLSupportInit
   {
   public:
  @@ -103,6 +107,10 @@
   
   	static unsigned long		s_initCounter;
   };
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
   
   
   
  
  
  
  1.4       +8 -0      xml-xalan/c/src/XMLSupport/XalanHTMLElementsProperties.cpp
  
  Index: XalanHTMLElementsProperties.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/XalanHTMLElementsProperties.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XalanHTMLElementsProperties.cpp	2 Sep 2002 18:20:04 -0000	1.3
  +++ XalanHTMLElementsProperties.cpp	20 Nov 2002 02:32:13 -0000	1.4
  @@ -64,6 +64,10 @@
   
   
   
  +XALAN_CPP_NAMESPACE_BEGIN
  +
  +
  +
   XalanHTMLElementsProperties::XalanHTMLElementsProperties()
   {
   }
  @@ -1280,3 +1284,7 @@
   
   const XalanHTMLElementsProperties::InternalElementProperties* const		XalanHTMLElementsProperties::s_dummyProperties =
   			s_lastProperties + 1;
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
  
  
  
  1.2       +8 -0      xml-xalan/c/src/XMLSupport/XalanHTMLElementsProperties.hpp
  
  Index: XalanHTMLElementsProperties.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/XalanHTMLElementsProperties.hpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XalanHTMLElementsProperties.hpp	23 Aug 2002 21:20:28 -0000	1.1
  +++ XalanHTMLElementsProperties.hpp	20 Nov 2002 02:32:13 -0000	1.2
  @@ -68,6 +68,10 @@
   
   
   
  +XALAN_CPP_NAMESPACE_BEGIN
  +
  +
  +
   class XALAN_XMLSUPPORT_EXPORT XalanHTMLElementsProperties
   {
   public:
  @@ -299,6 +303,10 @@
   	operator=(const XalanHTMLElementsProperties&);
   
   };
  +
  +
  +
  +XALAN_CPP_NAMESPACE_END
   
   
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org