blob: e544a17096664b4aebf62e576bf873f7b0b007b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/***************************************************************************
copyright : (C) 2003-2006 by Robby Stephenson
email : robby@periapsis.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of version 2 of the GNU General Public License as *
* published by the Free Software Foundation; *
* *
***************************************************************************/
#ifndef XMLIMPORTER_H
#define XMLIMPORTER_H
#include "importer.h"
#include <tqdom.h>
namespace Tellico {
namespace Import {
/**
* The XMLImporter class is meant as an abstract class for any importer which reads xml files.
*
* @author Robby Stephenson
*/
class XMLImporter : public Importer {
Q_OBJECT
TQ_OBJECT
public:
/**
* In the constructor, the contents of the file are read.
*
* @param url The file to be imported
*/
XMLImporter(const KURL& url);
/**
* Imports xml text.
*
* @param text The text
*/
XMLImporter(const TQString& text);
/**
* Imports xml text from a byte array.
*
* @param data The Data
*/
XMLImporter(const TQByteArray& data);
XMLImporter(const TQDomDocument& dom);
virtual void setText(const TQString& text);
/**
* This class gets used as a utility XML loader. This should never get called,
* but cannot be abstract.
*/
virtual Data::CollPtr collection();
/**
* Returns the contents of the imported file.
*
* @return The file contents
*/
const TQDomDocument& domDocument() const { return m_dom; }
private:
TQDomDocument m_dom;
};
} // end namespace
} // end namespace
#endif
|