dbertoni 2003/02/12 17:26:41
Modified: c/samples/ExternalFunction ExternalFunction.cpp
Log:
Added using declaration.
Revision Changes Path
1.28 +12 -0 xml-xalan/c/samples/ExternalFunction/ExternalFunction.cpp
Index: ExternalFunction.cpp
===================================================================
RCS file:
/home/cvs/xml-xalan/c/samples/ExternalFunction/ExternalFunction.cpp,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ExternalFunction.cpp 26 Nov 2002 02:28:00 -0000 1.27
+++ ExternalFunction.cpp 13 Feb 2003 01:26:41 -0000 1.28
@@ -41,6 +41,10 @@
{
public:
+#if !defined(XALAN_NO_USING_DECLARATION)
+ using Function::execute;
+#endif
+
/**
* Execute an XPath function object. The function must return a valid
* object. Extension functions should override this version of
execute(),
@@ -122,6 +126,10 @@
{
public:
+#if !defined(XALAN_NO_USING_DECLARATION)
+ using Function::execute;
+#endif
+
/**
* Execute an XPath function object. The function must return a valid
* object. Extension functions should override this version of
execute(),
@@ -202,6 +210,10 @@
class FunctionAsctime : public Function
{
public:
+
+#if !defined(XALAN_NO_USING_DECLARATION)
+ using Function::execute;
+#endif
/**
* Execute an XPath function object. The function must return a valid
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]