peiyongz 2004/08/11 09:50:47 Modified: c/src/xercesc/util XMLAbstractDoubleFloat.hpp Log: getValue()/isDataConverted() Revision Changes Path 1.21 +19 -1 xml-xerces/c/src/xercesc/util/XMLAbstractDoubleFloat.hpp Index: XMLAbstractDoubleFloat.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/XMLAbstractDoubleFloat.hpp,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- XMLAbstractDoubleFloat.hpp 29 Jan 2004 11:48:46 -0000 1.20 +++ XMLAbstractDoubleFloat.hpp 11 Aug 2004 16:50:47 -0000 1.21 @@ -57,6 +57,9 @@ /* * $Id$ * $Log$ + * Revision 1.21 2004/08/11 16:50:47 peiyongz + * getValue()/isDataConverted() + * * Revision 1.20 2004/01/29 11:48:46 cargilld * Code cleanup changes to get rid of various compiler diagnostic messages. * @@ -204,6 +207,10 @@ MemoryManager* getMemoryManager() const; + inline bool isDataConverted() const; + + inline double getValue() const; + /*** * * The decimal point delimiter for the schema double/float type is @@ -287,6 +294,7 @@ // XMLCh* fFormattedString; MemoryManager* fMemoryManager; + }; inline bool XMLAbstractDoubleFloat::isSpecialValue() const @@ -297,6 +305,16 @@ inline MemoryManager* XMLAbstractDoubleFloat::getMemoryManager() const { return fMemoryManager; +} + +inline bool XMLAbstractDoubleFloat::isDataConverted() const +{ + return fDataConverted; +} + +inline double XMLAbstractDoubleFloat::getValue() const +{ + return fValue; } XERCES_CPP_NAMESPACE_END
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]