|
reSIProcate/stack
9694
|
#include <ContentsFactory.hxx>


Public Member Functions | |
| ContentsFactory () | |
| ContentsFactory (const Mime &nonStandardType) | |
| virtual Contents * | create (const HeaderFieldValue &hfv, const Mime &contentType) const |
| virtual Contents * | convert (Contents *c) const |
Definition at line 15 of file ContentsFactory.hxx.
| resip::ContentsFactory< T >::ContentsFactory | ( | ) | [inline] |
Definition at line 18 of file ContentsFactory.hxx.
: ContentsFactoryBase(T::getStaticType()) {}
| resip::ContentsFactory< T >::ContentsFactory | ( | const Mime & | nonStandardType | ) | [inline, explicit] |
Definition at line 22 of file ContentsFactory.hxx.
: ContentsFactoryBase(nonStandardType) {}
| virtual Contents* resip::ContentsFactory< T >::convert | ( | Contents * | c | ) | const [inline, virtual] |
Implements resip::ContentsFactoryBase.
Definition at line 32 of file ContentsFactory.hxx.
{
return dynamic_cast<T*>(c);
}
| virtual Contents* resip::ContentsFactory< T >::create | ( | const HeaderFieldValue & | hfv, |
| const Mime & | contentType | ||
| ) | const [inline, virtual] |
Implements resip::ContentsFactoryBase.
Definition at line 27 of file ContentsFactory.hxx.
{
return new T(hfv, contentType);
}
1.7.5.1