1 |
#if !defined(RESIP_FLOATPARAMETER_HXX) |
2 |
#define RESIP_FLOATPARAMETER_HXX |
3 |
|
4 |
#include "resiprocate/Parameter.hxx" |
5 |
#include "resiprocate/ParameterTypeEnums.hxx" |
6 |
#include <iosfwd> |
7 |
|
8 |
namespace resip |
9 |
{ |
10 |
|
11 |
class ParseBuffer; |
12 |
|
13 |
class FloatParameter : public Parameter |
14 |
{ |
15 |
public: |
16 |
typedef float Type; |
17 |
|
18 |
FloatParameter(ParameterTypes::Type, ParseBuffer& pb, const char* terminators); |
19 |
explicit FloatParameter(ParameterTypes::Type type); |
20 |
|
21 |
static Parameter* decode(ParameterTypes::Type type, ParseBuffer& pb, const char* terminators) |
22 |
{ |
23 |
return new FloatParameter(type, pb, terminators); |
24 |
} |
25 |
|
26 |
virtual Parameter* clone() const; |
27 |
virtual std::ostream& encode(std::ostream& stream) const; |
28 |
|
29 |
private: |
30 |
friend class ParserCategory; |
31 |
Type& value() {return mValue;} |
32 |
|
33 |
Type mValue; |
34 |
}; |
35 |
|
36 |
} |
37 |
|
38 |
#endif |
39 |
|
40 |
/* ==================================================================== |
41 |
* The Vovida Software License, Version 1.0 |
42 |
* |
43 |
* Copyright (c) 2000 Vovida Networks, Inc. All rights reserved. |
44 |
* |
45 |
* Redistribution and use in source and binary forms, with or without |
46 |
* modification, are permitted provided that the following conditions |
47 |
* are met: |
48 |
* |
49 |
* 1. Redistributions of source code must retain the above copyright |
50 |
* notice, this list of conditions and the following disclaimer. |
51 |
* |
52 |
* 2. Redistributions in binary form must reproduce the above copyright |
53 |
* notice, this list of conditions and the following disclaimer in |
54 |
* the documentation and/or other materials provided with the |
55 |
* distribution. |
56 |
* |
57 |
* 3. The names "VOCAL", "Vovida Open Communication Application Library", |
58 |
* and "Vovida Open Communication Application Library (VOCAL)" must |
59 |
* not be used to endorse or promote products derived from this |
60 |
* software without prior written permission. For written |
61 |
* permission, please contact vocal@vovida.org. |
62 |
* |
63 |
* 4. Products derived from this software may not be called "VOCAL", nor |
64 |
* may "VOCAL" appear in their name, without prior written |
65 |
* permission of Vovida Networks, Inc. |
66 |
* |
67 |
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED |
68 |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
69 |
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND |
70 |
* NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA |
71 |
* NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES |
72 |
* IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL, |
73 |
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
74 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
75 |
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
76 |
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
77 |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
78 |
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH |
79 |
* DAMAGE. |
80 |
* |
81 |
* ==================================================================== |
82 |
* |
83 |
* This software consists of voluntary contributions made by Vovida |
84 |
* Networks, Inc. and many individuals on behalf of Vovida Networks, |
85 |
* Inc. For more information on Vovida Networks, Inc., please see |
86 |
* <http://www.vovida.org/>. |
87 |
* |
88 |
*/ |