source: NonGTP/Xerces/xerces-c_2_8_0/include/xercesc/util/XMLDouble.hpp @ 2674

Revision 2674, 3.2 KB checked in by mattausch, 16 years ago (diff)
Line 
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements.  See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License.  You may obtain a copy of the License at
8 *
9 *      http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18/*
19 * $Id: XMLDouble.hpp 568078 2007-08-21 11:43:25Z amassari $
20 */
21
22#ifndef XML_DOUBLE_HPP
23#define XML_DOUBLE_HPP
24
25#include <xercesc/util/XMLAbstractDoubleFloat.hpp>
26
27XERCES_CPP_NAMESPACE_BEGIN
28
29class XMLUTIL_EXPORT XMLDouble : public XMLAbstractDoubleFloat
30{
31public:
32
33        /**
34         * Constructs a newly allocated <code>XMLDouble</code> object that
35         * represents the value represented by the string.
36         *
37         * @param      strValue the <code>String</code> to be converted to an
38         *                 <code>XMLDouble</code>.
39         * @param manager    Pointer to the memory manager to be used to
40         *                   allocate objects.
41         * @exception  NumberFormatException  if the <code>String</code> does not
42         *               contain a parsable XMLDouble.
43         */
44
45    XMLDouble(const XMLCh* const strValue,
46              MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
47
48    ~XMLDouble();
49
50        /**
51         * Compares this object to the specified object.
52         * The result is <code>true</code> if and only if the argument is not
53         * <code>null</code> and is an <code>XMLDouble</code> object that contains
54         * the same <code>int</code> value as this object.
55         *
56         * @param   lValue the object to compare with.
57         * @param   rValue the object to compare against.
58         * @return  <code>true</code> if the objects are the same;
59         *          <code>false</code> otherwise.
60         */
61
62    inline static int            compareValues(const XMLDouble* const lValue
63                                             , const XMLDouble* const rValue);
64
65    /***
66     * Support for Serialization/De-serialization
67     ***/
68    DECL_XSERIALIZABLE(XMLDouble)
69
70    XMLDouble(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
71
72protected:
73
74    virtual void          checkBoundary(char* const strValue);
75
76private:
77    //
78    // Unimplemented
79    //
80    // copy ctor
81    // assignment ctor
82    //
83     XMLDouble(const XMLDouble& toCopy);
84     XMLDouble& operator=(const XMLDouble& toAssign);
85
86};
87
88inline int XMLDouble::compareValues(const XMLDouble* const lValue
89                                  , const XMLDouble* const rValue)
90{
91    return XMLAbstractDoubleFloat::compareValues((const XMLAbstractDoubleFloat* const) lValue,
92                                                 (const XMLAbstractDoubleFloat* const) rValue
93                                                 , ((XMLAbstractDoubleFloat*)lValue)->getMemoryManager());
94}
95
96XERCES_CPP_NAMESPACE_END
97
98#endif
99
Note: See TracBrowser for help on using the repository browser.