dbertoni 2003/02/12 18:22:35
Modified: c/src/XPath XBoolean.hpp XNumberBase.hpp
Log:
Added using declaration.
Revision Changes Path
1.14 +6 -0 xml-xalan/c/src/XPath/XBoolean.hpp
Index: XBoolean.hpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XPath/XBoolean.hpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- XBoolean.hpp 2 Jan 2003 17:39:08 -0000 1.13
+++ XBoolean.hpp 13 Feb 2003 02:22:35 -0000 1.14
@@ -77,6 +77,8 @@
{
public:
+ typedef XObject ParentType;
+
/**
* Construct an XBoolean object from a boolean value
*
@@ -114,6 +116,10 @@
str(
FormatterListener& formatterListener,
MemberFunctionPtr function) const;
+
+#if !defined(XALAN_NO_USING_DECLARATION)
+ using ParentType::str;
+#endif
virtual double
stringLength() const;
1.6 +4 -4 xml-xalan/c/src/XPath/XNumberBase.hpp
Index: XNumberBase.hpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XPath/XNumberBase.hpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- XNumberBase.hpp 13 Feb 2003 01:27:23 -0000 1.5
+++ XNumberBase.hpp 13 Feb 2003 02:22:35 -0000 1.6
@@ -99,10 +99,6 @@
virtual bool
boolean() const;
-#if !defined(XALAN_NO_USING_DECLARATION)
- using ParentType::str;
-#endif
-
virtual const XalanDOMString&
str() const = 0;
@@ -110,6 +106,10 @@
str(
FormatterListener& formatterListener,
MemberFunctionPtr function) const = 0;
+
+#if !defined(XALAN_NO_USING_DECLARATION)
+ using ParentType::str;
+#endif
virtual double
stringLength() const = 0;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]