~ubuntu-branches/ubuntu/raring/kdepimlibs/raring-proposed

« back to all changes in this revision

Viewing changes to kmime/kmime_content.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Thomas
  • Date: 2012-05-24 21:48:49 UTC
  • mto: This revision was merged to the branch mainline in revision 120.
  • Revision ID: package-import@ubuntu.com-20120524214849-jg6g61f1r51u3mgo
Tags: upstream-4.8.80a
ImportĀ upstreamĀ versionĀ 4.8.80a

Show diffs side-by-side

added added

removed removed

Lines of Context:
158
158
  d_ptr->body = body;
159
159
}
160
160
 
 
161
QByteArray Content::preamble() const
 
162
{
 
163
  return d_ptr->preamble;
 
164
}
 
165
 
 
166
void Content::setPreamble( const QByteArray &preamble )
 
167
{
 
168
  d_ptr->preamble = preamble;
 
169
}
 
170
 
 
171
 
 
172
QByteArray Content::epilogue() const
 
173
{
 
174
  return d_ptr->epilogue;
 
175
}
 
176
 
 
177
void Content::setEpilogue( const QByteArray &epilogue )
 
178
{
 
179
  d_ptr->epilogue = epilogue;
 
180
}
 
181
 
161
182
void Content::parse()
162
183
{
163
184
  Q_D( Content );