You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ja...@apache.org on 2001/06/14 07:39:49 UTC

cvs commit: xml-xerces/perl/Xerces_headers/sax AttributeList.hpp

jasons      01/06/13 22:39:49

  Modified:    perl/Xerces_headers/sax AttributeList.hpp
  Log:
  	* Xerces_headers/sax/AttributeList.hpp (Repository):
  	Made all methods available to Perl
  
  Revision  Changes    Path
  1.3       +11 -8     xml-xerces/perl/Xerces_headers/sax/AttributeList.hpp
  
  Index: AttributeList.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/perl/Xerces_headers/sax/AttributeList.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- AttributeList.hpp	2001/05/05 23:07:04	1.2
  +++ AttributeList.hpp	2001/06/14 05:39:49	1.3
  @@ -56,6 +56,10 @@
   
   /*
    * $Log: AttributeList.hpp,v $
  + * Revision 1.3  2001/06/14 05:39:49  jasons
  + * 	* Xerces_headers/sax/AttributeList.hpp (Repository):
  + * 	Made all methods available to Perl
  + *
    * Revision 1.2  2001/05/05 23:07:04  jasons
    * uncommented public destructors
    *
  @@ -164,7 +168,7 @@
   //     }
   
       /** Destructor */
  -    virtual ~AttributeList();
  +//    virtual ~AttributeList();
   //     {
   //     }
       //@}
  @@ -181,7 +185,7 @@
       *
       * @return The number of attributes in the list.  
       */
  -//     virtual unsigned int getLength() const = 0;
  +     virtual unsigned int getLength() const;
   
     /**
       * Return the name of an attribute in this list (by position).
  @@ -199,7 +203,7 @@
       *         if the index is out of range.
       * @see #getLength 
       */
  -//    virtual const XMLCh* getName(const unsigned int index) const = 0;
  +    virtual const XMLCh* getName(const unsigned int index) const;
   
     /**
       * Return the type of an attribute in the list (by position).
  @@ -222,7 +226,7 @@
       * @see #getLength 
       * @see #getType(String)
       */
  -//    virtual const XMLCh* getType(const unsigned int index) const = 0;
  +    virtual const XMLCh* getType(const unsigned int index) const;
   
     /**
       * Return the value of an attribute in the list (by position).
  @@ -238,7 +242,7 @@
       * @see #getValue(XMLCh*)
       * @see #getValue(char *)
       */
  -//    virtual const XMLCh* getValue(const unsigned int index) const = 0;
  +    virtual const XMLCh* getValue(const unsigned int index) const;
   
     /**
       * Return the type of an attribute in the list (by name).
  @@ -254,7 +258,7 @@
       *         such attribute exists.
       * @see #getType(int)
       */
  -//    virtual const XMLCh* getType(const XMLCh* const name) const = 0;
  +    virtual const XMLCh* getType(const XMLCh* /*const*/ name) const;
   
     /**
       * Return the value of an attribute in the list (by name).
  @@ -271,7 +275,7 @@
       * @see #getValue(int)
       * @see #getValue(char *)
       */
  -//    virtual const XMLCh* getValue(const XMLCh* const name) const = 0;
  +//    virtual const XMLCh* getValue(const XMLCh* /*const*/ name) const;
   
     /**
       * Return the value of an attribute in the list (by name).
  @@ -288,7 +292,7 @@
       * @see #getValue(int)
       * @see #getValue(XMLCh*)
       */
  -//    virtual const XMLCh* getValue(const char* const name) const = 0;
  +    virtual const XMLCh* getValue(const char* /*const*/ name) const;
       //@}
   
   // private :
  
  
  

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