You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by pe...@apache.org on 2001/10/09 23:28:28 UTC

cvs commit: xml-xerces/c/src/util XMLNumber.cpp XMLNumber.hpp

peiyongz    01/10/09 14:28:28

  Modified:    c/src/util XMLNumber.cpp XMLNumber.hpp
  Log:
  explicit ctor/dtor defined.
  
  Revision  Changes    Path
  1.2       +12 -2     xml-xerces/c/src/util/XMLNumber.cpp
  
  Index: XMLNumber.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/util/XMLNumber.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XMLNumber.cpp	2001/09/27 14:54:03	1.1
  +++ XMLNumber.cpp	2001/10/09 21:28:28	1.2
  @@ -55,8 +55,11 @@
    */
   
   /*
  - * $Id: XMLNumber.cpp,v 1.1 2001/09/27 14:54:03 peiyongz Exp $
  + * $Id: XMLNumber.cpp,v 1.2 2001/10/09 21:28:28 peiyongz Exp $
    * $Log: XMLNumber.cpp,v $
  + * Revision 1.2  2001/10/09 21:28:28  peiyongz
  + * explicit ctor/dtor defined.
  + *
    * Revision 1.1  2001/09/27 14:54:03  peiyongz
    * DTV Reorganization: new class
    *
  @@ -66,4 +69,11 @@
   //  Includes
   // ---------------------------------------------------------------------------
   #include <util/XMLNumber.hpp>
  +
  +
  +XMLNumber::XMLNumber()
  +{}
  +
  +XMLNumber::~XMLNumber()
  +{}
   
  
  
  
  1.2       +11 -2     xml-xerces/c/src/util/XMLNumber.hpp
  
  Index: XMLNumber.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/util/XMLNumber.hpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XMLNumber.hpp	2001/09/27 14:54:03	1.1
  +++ XMLNumber.hpp	2001/10/09 21:28:28	1.2
  @@ -55,8 +55,11 @@
    */
   
   /*
  - * $Id: XMLNumber.hpp,v 1.1 2001/09/27 14:54:03 peiyongz Exp $
  + * $Id: XMLNumber.hpp,v 1.2 2001/10/09 21:28:28 peiyongz Exp $
    * $Log: XMLNumber.hpp,v $
  + * Revision 1.2  2001/10/09 21:28:28  peiyongz
  + * explicit ctor/dtor defined.
  + *
    * Revision 1.1  2001/09/27 14:54:03  peiyongz
    * DTV Reorganization: new class
    *
  @@ -71,6 +74,8 @@
   {
   public:
   
  +    virtual ~XMLNumber();
  +
   	/**
   	 *  Return string representation of the decimal value.
        *  A decimal point will be included as necessary, 
  @@ -88,6 +93,10 @@
   	 *
   	 */
       virtual int        getSign() const = 0;
  +
  +protected:
  +
  +    XMLNumber();
   
   };
   
  
  
  

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