|
reSIProcate/stack
9694
|
#include <Helper.hxx>
Public Member Functions | |
| ContentsSecAttrs () | |
| ContentsSecAttrs (std::auto_ptr< Contents > contents, std::auto_ptr< SecurityAttributes > attributes) | |
| ContentsSecAttrs (const ContentsSecAttrs &rhs) | |
| ContentsSecAttrs & | operator= (const ContentsSecAttrs &rhs) |
Public Attributes | |
| std::auto_ptr< Contents > | mContents |
| std::auto_ptr< SecurityAttributes > | mAttributes |
Definition at line 526 of file Helper.hxx.
| Helper::ContentsSecAttrs::ContentsSecAttrs | ( | ) |
Definition at line 1859 of file Helper.cxx.
: mContents(0), mAttributes(0) {}
| Helper::ContentsSecAttrs::ContentsSecAttrs | ( | std::auto_ptr< Contents > | contents, |
| std::auto_ptr< SecurityAttributes > | attributes | ||
| ) |
Definition at line 1864 of file Helper.cxx.
: mContents(contents), mAttributes(attributes) {}
| Helper::ContentsSecAttrs::ContentsSecAttrs | ( | const ContentsSecAttrs & | rhs | ) |
Definition at line 1872 of file Helper.cxx.
: mContents(rhs.mContents), mAttributes(rhs.mAttributes) {}
| Helper::ContentsSecAttrs & Helper::ContentsSecAttrs::operator= | ( | const ContentsSecAttrs & | rhs | ) |
Definition at line 1878 of file Helper.cxx.
References mAttributes, and mContents.
{
if (&rhs != this)
{
// !!bwc!! Yikes! Destructive assignment operator! Are we _sure_ this is
// the intended behavior?
mContents = rhs.mContents;
mAttributes = rhs.mAttributes;
}
return *this;
}
std::auto_ptr<SecurityAttributes> resip::Helper::ContentsSecAttrs::mAttributes [mutable] |
Definition at line 534 of file Helper.hxx.
Referenced by operator=().
std::auto_ptr<Contents> resip::Helper::ContentsSecAttrs::mContents [mutable] |
Definition at line 533 of file Helper.hxx.
Referenced by operator=().
1.7.5.1