1/* This file is part of the KDE project
2 Copyright (C) 2010 Dag Andersen <danders@get2net.dk>
3
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
8
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
13
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
18*/
19
20#ifndef KPLATOXMLLOADER_H
21#define KPLATOXMLLOADER_H
22
23#include "KPlatoXmlLoaderBase.h"
24
25#include "KoXmlReaderForward.h"
26
27#include <QString>
28#include <QObject>
29
30namespace KPlato
31{
32 class Config;
33 class Package;
34 class XMLLoaderObject;
35 class Project;
36
37class KPlatoXmlLoader : public KPlatoXmlLoaderBase
38{
39 Q_OBJECT
40public:
41 KPlatoXmlLoader( XMLLoaderObject &loader, Project *project );
42
43 QString errorMessage() const;
44 Package *package() const;
45 QString timeTag() const;
46
47 using KPlatoXmlLoaderBase::load;
48 bool load( const KoXmlElement& plan );
49 bool loadWorkpackage( const KoXmlElement &plan );
50
51private:
52 XMLLoaderObject &m_loader;
53 Project *m_project;
54 QString m_message;
55 Package *m_package;
56 QString m_timeTag;
57};
58
59}
60
61#endif // KPLATOXMLLOADER_H
62