|
reSIProcate/stack
9694
|
SIP body type for holding Multipart-Related body contents (MIME content-type multipart/related). More...
#include <MultipartRelatedContents.hxx>


Public Member Functions | |
| MultipartRelatedContents () | |
| MultipartRelatedContents (const HeaderFieldValue &hfv, const Mime &contentType) | |
| MultipartRelatedContents (const MultipartRelatedContents &rhs) | |
| MultipartRelatedContents & | operator= (const MultipartRelatedContents &rhs) |
| virtual Contents * | clone () const |
| duplicate an MultipartRelatedContents object | |
Static Public Member Functions | |
| static const Mime & | getStaticType () |
| static bool | init () |
SIP body type for holding Multipart-Related body contents (MIME content-type multipart/related).
Definition at line 13 of file MultipartRelatedContents.hxx.
| MultipartRelatedContents::MultipartRelatedContents | ( | ) |
Definition at line 21 of file MultipartRelatedContents.cxx.
Referenced by clone().
: MultipartMixedContents(getStaticType()) {}
| MultipartRelatedContents::MultipartRelatedContents | ( | const HeaderFieldValue & | hfv, |
| const Mime & | contentType | ||
| ) |
Definition at line 25 of file MultipartRelatedContents.cxx.
: MultipartMixedContents(hfv, contentsType) {}
| MultipartRelatedContents::MultipartRelatedContents | ( | const MultipartRelatedContents & | rhs | ) |
Definition at line 29 of file MultipartRelatedContents.cxx.
: MultipartMixedContents(rhs) {}
| Contents * MultipartRelatedContents::clone | ( | ) | const [virtual] |
duplicate an MultipartRelatedContents object
Reimplemented from resip::MultipartMixedContents.
Definition at line 41 of file MultipartRelatedContents.cxx.
References MultipartRelatedContents().
{
return new MultipartRelatedContents(*this);
}

| const Mime & MultipartRelatedContents::getStaticType | ( | ) | [static] |
Reimplemented from resip::MultipartMixedContents.
Definition at line 47 of file MultipartRelatedContents.cxx.
References type.
| bool MultipartRelatedContents::init | ( | ) | [static] |
Reimplemented from resip::MultipartMixedContents.
Definition at line 14 of file MultipartRelatedContents.cxx.
{
static ContentsFactory<MultipartRelatedContents> factory;
(void)factory;
return true;
}
| MultipartRelatedContents & MultipartRelatedContents::operator= | ( | const MultipartRelatedContents & | rhs | ) |
Definition at line 34 of file MultipartRelatedContents.cxx.
{
MultipartMixedContents::operator=(rhs);
return *this;
}
1.7.5.1