You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ab...@locus.apache.org on 2000/02/11 03:45:16 UTC

cvs commit: xml-xerces/c/samples/PParse PParse.hpp

abagchi     00/02/10 18:45:16

  Modified:    c/samples/PParse PParse.hpp
  Log:
  Removed StrX::transcode
  
  Revision  Changes    Path
  1.3       +5 -10     xml-xerces/c/samples/PParse/PParse.hpp
  
  Index: PParse.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/samples/PParse/PParse.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- PParse.hpp	2000/02/06 07:47:20	1.2
  +++ PParse.hpp	2000/02/11 02:45:15	1.3
  @@ -56,6 +56,9 @@
   
   /**
    * $Log: PParse.hpp,v $
  + * Revision 1.3  2000/02/11 02:45:15  abagchi
  + * Removed StrX::transcode
  + *
    * Revision 1.2  2000/02/06 07:47:20  rahulj
    * Year 2K copyright swat.
    *
  @@ -87,12 +90,10 @@
       // -----------------------------------------------------------------------
       //  Constructors and Destructor
       // -----------------------------------------------------------------------
  -	StrX(const XMLCh* const toTranscode, const unsigned int len = 0) :
  -
  -        fLocalForm(0)
  +    StrX(const XMLCh* const toTranscode)
       {
           // Call the private transcoding method
  -        transcode(toTranscode, len);
  +        fLocalForm = XMLString::transcode(toTranscode);
       }
   
       ~StrX()
  @@ -111,12 +112,6 @@
   
   
   private :
  -    // -----------------------------------------------------------------------
  -    //  Private helper methods
  -    // -----------------------------------------------------------------------
  -	void transcode (const XMLCh* const toTranscode, const unsigned int len);
  -
  -
       // -----------------------------------------------------------------------
       //  Private data members
       //