|
reSIProcate/stack
9694
|
Generically represents miscellaneous parameter data that is encoded using double quotes. More...
#include <QuotedDataParameter.hxx>


Public Member Functions | |
| QuotedDataParameter (ParameterTypes::Type, ParseBuffer &pb, const std::bitset< 256 > &terminators) | |
| QuotedDataParameter (ParameterTypes::Type) | |
| virtual Parameter * | clone () const |
Static Public Member Functions | |
| static Parameter * | decode (ParameterTypes::Type type, ParseBuffer &pb, const std::bitset< 256 > &terminators, PoolBase *pool) |
Protected Member Functions | |
| QuotedDataParameter (const QuotedDataParameter &other) | |
Friends | |
| class | ParserCategory |
| class | Auth |
Generically represents miscellaneous parameter data that is encoded using double quotes.
Definition at line 21 of file QuotedDataParameter.hxx.
| QuotedDataParameter::QuotedDataParameter | ( | ParameterTypes::Type | type, |
| ParseBuffer & | pb, | ||
| const std::bitset< 256 > & | terminators | ||
| ) |
Definition at line 18 of file QuotedDataParameter.cxx.
References DebugLog, resip::DataParameter::mQuoted, and resip::DataParameter::mValue.
| QuotedDataParameter::QuotedDataParameter | ( | ParameterTypes::Type | type | ) | [explicit] |
Definition at line 31 of file QuotedDataParameter.cxx.
References resip::DataParameter::mQuoted.
: DataParameter(type) { mQuoted = true; }
| resip::QuotedDataParameter::QuotedDataParameter | ( | const QuotedDataParameter & | other | ) | [inline, protected] |
Definition at line 38 of file QuotedDataParameter.hxx.
: DataParameter(other) {}
| Parameter * QuotedDataParameter::clone | ( | ) | const [virtual] |
Reimplemented from resip::DataParameter.
Definition at line 38 of file QuotedDataParameter.cxx.
References QuotedDataParameter().
{
return new QuotedDataParameter(*this);
}

| static Parameter* resip::QuotedDataParameter::decode | ( | ParameterTypes::Type | type, |
| ParseBuffer & | pb, | ||
| const std::bitset< 256 > & | terminators, | ||
| PoolBase * | pool | ||
| ) | [inline, static] |
Reimplemented from resip::DataParameter.
Definition at line 27 of file QuotedDataParameter.hxx.
References QuotedDataParameter().
{
return new (pool) QuotedDataParameter(type, pb, terminators);
}

friend class Auth [friend] |
Definition at line 43 of file QuotedDataParameter.hxx.
friend class ParserCategory [friend] |
Definition at line 42 of file QuotedDataParameter.hxx.
1.7.5.1