3 * $Id: sourceheader 511311 2006-02-19 14:51:05Z trueg $
5 * This file is part of the Nepomuk KDE project.
6 * Copyright (C) 2006-2007 Sebastian Trueg <trueg@kde.org>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 * See the file "COPYING" for the exact licensing terms.
15 #ifndef _MODEL_COPY_JOB_H_
16 #define _MODEL_COPY_JOB_H_
20 #include <QtCore/QTimer>
22 #include <Soprano/StatementIterator>
29 class ModelCopyJob
: public KJob
34 ModelCopyJob( Soprano::Model
* source
, Soprano::Model
* dest
, QObject
* parent
= 0 );
37 Soprano::Model
* source() const { return m_source
; }
38 Soprano::Model
* dest() const { return m_dest
; }
47 Soprano::Model
* m_source
;
48 Soprano::Model
* m_dest
;
50 Soprano::StatementIterator m_iterator
;