Added Document::source()

This commit is contained in:
Roberto Raggi
2009-06-05 14:29:57 +02:00
parent 0af74cd6f3
commit b18cb113da
2 changed files with 5 additions and 0 deletions

View File

@@ -242,6 +242,9 @@ Document::Ptr Document::create(const QString &fileName)
return doc;
}
QByteArray Document::source() const
{ return _source; }
void Document::setSource(const QByteArray &source)
{
_source = source;