|
reSIProcate/stack
9694
|
SIP body type for holding generic contents. More...
#include <GenericContents.hxx>


Public Member Functions | |
| GenericContents () | |
| GenericContents (const Data &text) | |
| GenericContents (const HeaderFieldValue &hfv, const Mime &contentType) | |
| GenericContents (const Data &data, const Mime &contentType) | |
| GenericContents (const GenericContents &rhs) | |
| virtual | ~GenericContents () |
| GenericContents & | operator= (const GenericContents &rhs) |
| virtual Contents * | clone () const |
| duplicate an GenericContents object | |
SIP body type for holding generic contents.
Definition at line 15 of file GenericContents.hxx.
| GenericContents::GenericContents | ( | ) |
| GenericContents::GenericContents | ( | const Data & | text | ) |
Definition at line 14 of file GenericContents.cxx.
: PlainContents(text) {}
| GenericContents::GenericContents | ( | const HeaderFieldValue & | hfv, |
| const Mime & | contentType | ||
| ) |
Definition at line 18 of file GenericContents.cxx.
: PlainContents(hfv, contentType) {}
Definition at line 22 of file GenericContents.cxx.
: PlainContents(data, contentType) {}
| GenericContents::GenericContents | ( | const GenericContents & | rhs | ) |
Definition at line 26 of file GenericContents.cxx.
: PlainContents(rhs) {}
| GenericContents::~GenericContents | ( | ) | [virtual] |
Definition at line 30 of file GenericContents.cxx.
{}
| Contents * GenericContents::clone | ( | ) | const [virtual] |
duplicate an GenericContents object
Reimplemented from resip::PlainContents.
Definition at line 44 of file GenericContents.cxx.
References GenericContents().
{
return new GenericContents(*this);
}

| GenericContents & GenericContents::operator= | ( | const GenericContents & | rhs | ) |
Definition at line 34 of file GenericContents.cxx.
{
if (this != &rhs)
{
this->PlainContents::operator=(rhs);
}
return *this;
}
1.7.5.1