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