dbertoni    2003/02/12 17:26:59

  Modified:    c/src/XalanEXSLT XalanEXSLTCommonImpl.hpp
                        XalanEXSLTMathImpl.hpp XalanEXSLTSetImpl.hpp
                        XalanEXSLTStringImpl.hpp
  Log:
  Added using declaration.
  
  Revision  Changes    Path
  1.5       +7 -1      xml-xalan/c/src/XalanEXSLT/XalanEXSLTCommonImpl.hpp
  
  Index: XalanEXSLTCommonImpl.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XalanEXSLT/XalanEXSLTCommonImpl.hpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- XalanEXSLTCommonImpl.hpp  3 Feb 2003 22:13:07 -0000       1.4
  +++ XalanEXSLTCommonImpl.hpp  13 Feb 2003 01:26:59 -0000      1.5
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 2002 The Apache Software Foundation.  All rights 
  + * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights 
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -129,6 +129,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionObjectType() :
                Function(),
                m_boolean(s_booleanString),
  @@ -158,6 +160,10 @@
        }
   
        // These methods are inherited from Function ...
  +
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
   
        virtual XObjectPtr
        execute(
  
  
  
  1.4       +103 -1    xml-xalan/c/src/XalanEXSLT/XalanEXSLTMathImpl.hpp
  
  Index: XalanEXSLTMathImpl.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XalanEXSLT/XalanEXSLTMathImpl.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XalanEXSLTMathImpl.hpp    25 Nov 2002 19:26:34 -0000      1.3
  +++ XalanEXSLTMathImpl.hpp    13 Feb 2003 01:26:59 -0000      1.4
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 2002 The Apache Software Foundation.  All rights 
  + * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights 
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -75,6 +75,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionAbs()
        {
        }
  @@ -86,6 +88,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -124,6 +130,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionAcos()
        {
        }
  @@ -135,6 +143,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -173,6 +185,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionAsin()
        {
        }
  @@ -184,6 +198,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -222,6 +240,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionAtan()
        {
        }
  @@ -233,6 +253,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -271,6 +295,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionAtan2()
        {
        }
  @@ -282,6 +308,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -320,6 +350,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionConstant()
        {
        }
  @@ -331,6 +363,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -389,6 +425,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionCos()
        {
        }
  @@ -400,6 +438,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -438,6 +480,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionExp()
        {
        }
  @@ -449,6 +493,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -487,6 +535,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionHighest()
        {
        }
  @@ -498,6 +548,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -536,6 +590,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionLog()
        {
        }
  @@ -547,6 +603,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -585,6 +645,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionLowest()
        {
        }
  @@ -596,6 +658,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -634,6 +700,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionMax()
        {
        }
  @@ -645,6 +713,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -683,6 +755,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionMin()
        {
        }
  @@ -694,6 +768,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -732,6 +810,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionPower()
        {
        }
  @@ -743,6 +823,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -781,6 +865,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionSin()
        {
        }
  @@ -792,6 +878,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -830,6 +920,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionSqrt()
        {
        }
  @@ -841,6 +933,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -879,6 +975,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionTan()
        {
        }
  @@ -889,6 +987,10 @@
        }
   
        // These methods are inherited from Function ...
  +
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
   
        virtual XObjectPtr
        execute(
  
  
  
  1.3       +19 -1     xml-xalan/c/src/XalanEXSLT/XalanEXSLTSetImpl.hpp
  
  Index: XalanEXSLTSetImpl.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XalanEXSLT/XalanEXSLTSetImpl.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XalanEXSLTSetImpl.hpp     25 Nov 2002 19:26:34 -0000      1.2
  +++ XalanEXSLTSetImpl.hpp     13 Feb 2003 01:26:59 -0000      1.3
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 2002 The Apache Software Foundation.  All rights 
  + * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights 
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -169,6 +169,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionHasSameNode() :
                Function()
        {
  @@ -181,6 +183,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -266,6 +272,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionLeading() :
                Function()
        {
  @@ -278,6 +286,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -319,6 +331,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionTrailing() :
                Function()
        {
  @@ -330,6 +344,10 @@
        }
   
        // These methods are inherited from Function ...
  +
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
   
        virtual XObjectPtr
        execute(
  
  
  
  1.5       +19 -1     xml-xalan/c/src/XalanEXSLT/XalanEXSLTStringImpl.hpp
  
  Index: XalanEXSLTStringImpl.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XalanEXSLT/XalanEXSLTStringImpl.hpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- XalanEXSLTStringImpl.hpp  4 Feb 2003 19:46:56 -0000       1.4
  +++ XalanEXSLTStringImpl.hpp  13 Feb 2003 01:26:59 -0000      1.5
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 2002 The Apache Software Foundation.  All rights 
  + * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights 
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -75,6 +75,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionAlign()
        {
        }
  @@ -86,6 +88,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -132,6 +138,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionConcat() :
                Function()
        {
  @@ -144,6 +152,10 @@
   
        // These methods are inherited from Function ...
   
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
  +
        virtual XObjectPtr
        execute(
                        XPathExecutionContext&                  
executionContext,
  @@ -185,6 +197,8 @@
   {
   public:
   
  +     typedef Function        ParentType;
  +
        XalanEXSLTFunctionPadding() :
                Function(),
                m_space(s_spaceString)
  @@ -204,6 +218,10 @@
        }
   
        // These methods are inherited from Function ...
  +
  +#if !defined(XALAN_NO_USING_DECLARATION)
  +     using ParentType::execute;
  +#endif
   
        virtual XObjectPtr
        execute(
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to