Exemplo n.º 1
0
shared_ptr <text> text::decodeAndUnfold(const parsingContext& ctx, const string& in)
{
	shared_ptr <text> t = make_shared <text>();

	decodeAndUnfold(ctx, in, t.get());

	return t;
}
Exemplo n.º 2
0
ref <text> text::decodeAndUnfold(const parsingContext& ctx, const string& in)
{
	ref <text> t = vmime::create <text>();

	decodeAndUnfold(ctx, in, t.get());

	return t;
}
Exemplo n.º 3
0
shared_ptr <text> text::decodeAndUnfold(const string& in)
{
	shared_ptr <text> t = make_shared <text>();

	decodeAndUnfold(parsingContext::getDefaultContext(), in, t.get());

	return t;
}
Exemplo n.º 4
0
ref <text> text::decodeAndUnfold(const string& in)
{
	ref <text> t = vmime::create <text>();

	decodeAndUnfold(parsingContext::getDefaultContext(), in, t.get());

	return t;
}
Exemplo n.º 5
0
text* text::decodeAndUnfold(const string& in, text* generateInExisting)
{
	return decodeAndUnfold(parsingContext::getDefaultContext(), in, generateInExisting);
}