dbertoni 2002/11/25 10:11:01
Modified: c/src/PlatformSupport AttributeListImpl.cpp
AttributeListImpl.hpp AttributesImpl.cpp
AttributesImpl.hpp ExecutionContext.hpp
XSLException.hpp
Log:
New typedefs.
Revision Changes Path
1.24 +6 -6 xml-xalan/c/src/PlatformSupport/AttributeListImpl.cpp
Index: AttributeListImpl.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/AttributeListImpl.cpp,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- AttributeListImpl.cpp 20 Nov 2002 02:27:13 -0000 1.23
+++ AttributeListImpl.cpp 25 Nov 2002 18:11:01 -0000 1.24
@@ -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,7 +78,7 @@
AttributeListImpl::AttributeListImpl() :
- ParentType(),
+ AttributeListType(),
m_AttributeVector(),
m_cacheVector()
{
@@ -99,7 +99,7 @@
AttributeListImpl::AttributeListImpl(const AttributeListImpl&
theSource) :
- AttributeList(),
+ AttributeListType(),
m_AttributeVector()
{
// Use the assignment operator to do the dirty work...
@@ -110,8 +110,8 @@
-AttributeListImpl::AttributeListImpl(const ParentType& theSource) :
- AttributeList(),
+AttributeListImpl::AttributeListImpl(const AttributeListType&
theSource) :
+ AttributeListType(),
m_AttributeVector()
{
// Use the assignment operator to do the dirty work...
@@ -190,7 +190,7 @@
AttributeListImpl&
-AttributeListImpl::operator=(const ParentType& theRHS)
+AttributeListImpl::operator=(const AttributeListType& theRHS)
{
if (this != &theRHS)
{
1.18 +7 -5 xml-xalan/c/src/PlatformSupport/AttributeListImpl.hpp
Index: AttributeListImpl.hpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/AttributeListImpl.hpp,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- AttributeListImpl.hpp 20 Nov 2002 02:27:13 -0000 1.17
+++ AttributeListImpl.hpp 25 Nov 2002 18:11:01 -0000 1.18
@@ -81,12 +81,14 @@
-class XALAN_PLATFORMSUPPORT_EXPORT AttributeListImpl : public
XERCES_CPP_NAMESPACE_QUALIFIER AttributeList
+typedef XERCES_CPP_NAMESPACE_QUALIFIER AttributeList AttributeListType;
+
+
+
+class XALAN_PLATFORMSUPPORT_EXPORT AttributeListImpl : public
AttributeListType
{
public:
- typedef XERCES_CPP_NAMESPACE_QUALIFIER AttributeList ParentType;
-
explicit
AttributeListImpl();
@@ -95,13 +97,13 @@
AttributeListImpl(const AttributeListImpl& theSource);
- AttributeListImpl(const ParentType& theSource);
+ AttributeListImpl(const AttributeListType& theSource);
AttributeListImpl&
operator=(const AttributeListImpl& theRHS);
AttributeListImpl&
- operator=(const ParentType& theRHS);
+ operator=(const AttributeListType& theRHS);
// These are inherited from AttributeList
virtual unsigned int
1.10 +6 -6 xml-xalan/c/src/PlatformSupport/AttributesImpl.cpp
Index: AttributesImpl.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/AttributesImpl.cpp,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- AttributesImpl.cpp 20 Nov 2002 02:27:13 -0000 1.9
+++ AttributesImpl.cpp 25 Nov 2002 18:11:01 -0000 1.10
@@ -2,7 +2,7 @@
* The Apache Software License, Version 1.1
*
*
- * Copyright (c) 2001 The Apache Software Foundation. All rights
+ * Copyright (c) 2001-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -78,7 +78,7 @@
AttributesImpl::AttributesImpl() :
- ParentType(),
+ AttributesType(),
m_attributesVector(),
m_cacheVector()
{
@@ -99,7 +99,7 @@
AttributesImpl::AttributesImpl(const AttributesImpl& theSource) :
- Attributes(),
+ AttributesType(),
m_attributesVector()
{
// Use the assignment operator to do the dirty work...
@@ -110,8 +110,8 @@
-AttributesImpl::AttributesImpl(const ParentType& theSource) :
- Attributes(),
+AttributesImpl::AttributesImpl(const AttributesType& theSource) :
+ AttributesType(),
m_attributesVector()
{
// Use the assignment operator to do the dirty work...
@@ -192,7 +192,7 @@
AttributesImpl&
-AttributesImpl::operator=(const ParentType& theRHS)
+AttributesImpl::operator=(const AttributesType& theRHS)
{
if (this != &theRHS)
{
1.7 +7 -5 xml-xalan/c/src/PlatformSupport/AttributesImpl.hpp
Index: AttributesImpl.hpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/AttributesImpl.hpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- AttributesImpl.hpp 20 Nov 2002 02:27:13 -0000 1.6
+++ AttributesImpl.hpp 25 Nov 2002 18:11:01 -0000 1.7
@@ -80,12 +80,14 @@
-class XALAN_PLATFORMSUPPORT_EXPORT AttributesImpl : public
XERCES_CPP_NAMESPACE_QUALIFIER Attributes
+typedef XERCES_CPP_NAMESPACE_QUALIFIER Attributes AttributesType;
+
+
+
+class XALAN_PLATFORMSUPPORT_EXPORT AttributesImpl : public AttributesType
{
public:
- typedef XERCES_CPP_NAMESPACE_QUALIFIER Attributes ParentType;
-
explicit
AttributesImpl();
@@ -94,13 +96,13 @@
AttributesImpl(const AttributesImpl& theSource);
- AttributesImpl(const ParentType& theSource);
+ AttributesImpl(const AttributesType& theSource);
AttributesImpl&
operator=(const AttributesImpl& theRHS);
AttributesImpl&
- operator=(const ParentType& theRHS);
+ operator=(const AttributesType& theRHS);
// These are inherited from AttributeList
virtual unsigned int
1.8 +4 -2 xml-xalan/c/src/PlatformSupport/ExecutionContext.hpp
Index: ExecutionContext.hpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/ExecutionContext.hpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ExecutionContext.hpp 20 Nov 2002 02:27:13 -0000 1.7
+++ ExecutionContext.hpp 25 Nov 2002 18:11:01 -0000 1.8
@@ -72,6 +72,10 @@
+typedef XERCES_CPP_NAMESPACE_QUALIFIER Locator LocatorType;
+
+
+
class XalanNode;
class XalanDOMString;
@@ -82,8 +86,6 @@
class XALAN_PLATFORMSUPPORT_EXPORT ExecutionContext
{
public:
-
- typedef XERCES_CPP_NAMESPACE_QUALIFIER Locator LocatorType;
explicit
ExecutionContext();
1.11 +4 -2 xml-xalan/c/src/PlatformSupport/XSLException.hpp
Index: XSLException.hpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/XSLException.hpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- XSLException.hpp 20 Nov 2002 02:27:13 -0000 1.10
+++ XSLException.hpp 25 Nov 2002 18:11:01 -0000 1.11
@@ -73,11 +73,13 @@
+typedef XERCES_CPP_NAMESPACE_QUALIFIER Locator LocatorType;
+
+
+
class XALAN_PLATFORMSUPPORT_EXPORT XSLException
{
public:
-
- typedef XERCES_CPP_NAMESPACE_QUALIFIER Locator LocatorType;
typedef XalanLocator::size_type
size_type;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]