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

Revision 2674, 3.1 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: XMLFloat.hpp 568078 2007-08-21 11:43:25Z amassari $
20 */
21
22#ifndef XML_FLOAT_HPP
23#define XML_FLOAT_HPP
24
25#include <xercesc/util/XMLAbstractDoubleFloat.hpp>
26
27XERCES_CPP_NAMESPACE_BEGIN
28
29class XMLUTIL_EXPORT XMLFloat : public XMLAbstractDoubleFloat
30{
31public:
32
33        /**
34         * Constructs a newly allocated <code>XMLFloat</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>XMLFloat</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 XMLFloat.
43         */
44
45    XMLFloat(const XMLCh* const strValue,
46             MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
47
48    ~XMLFloat();
49
50        /**
51         * Compares the two specified XMLFloat objects.
52         * The result is <code>true</code> if and only if the argument is not
53         * <code>null</code> and that contains the same <code>int</code> value.
54         *
55         * @param   lValue the object to compare with.
56         * @param   rValue the object to compare against.
57         * @return  <code>true</code> if the objects are the same;
58         *          <code>false</code> otherwise.
59         */
60
61    inline static int            compareValues(const XMLFloat* const lValue
62                                             , const XMLFloat* const rValue);
63
64    /***
65     * Support for Serialization/De-serialization
66     ***/
67    DECL_XSERIALIZABLE(XMLFloat)
68
69    XMLFloat(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
70
71protected:
72
73    virtual void          checkBoundary(char* const strValue);
74
75private:
76    //
77    // Unimplemented
78    //
79    // copy ctor
80    // assignment ctor
81    //
82    XMLFloat(const XMLFloat& toCopy);
83    XMLFloat& operator=(const XMLFloat& toAssign);
84
85};
86
87inline int XMLFloat::compareValues(const XMLFloat* const lValue
88                                 , const XMLFloat* const rValue)
89{
90    return XMLAbstractDoubleFloat::compareValues((const XMLAbstractDoubleFloat* const) lValue,
91                                                 (const XMLAbstractDoubleFloat* const) rValue
92                                                 , ((XMLAbstractDoubleFloat*)lValue)->getMemoryManager());
93}
94
95XERCES_CPP_NAMESPACE_END
96
97#endif
Note: See TracBrowser for help on using the repository browser.