/***************************************************************************
- read a KEduVocDocument from a WQL file
+* this file is from kdeedu project. Filename: keduvocwqlreader.h
+***************************************************************************/
+
+/***************************************************************************
+ read a QmVocDocument from a WQL file
-----------------------------------------------------------------------
copyright : (C) 2004, 2007 Peter Hedlund <peter.hedlund@kdemail.net>
: (c) 2005 Eric Pignet
+ : (C) 2010, 2012 Reto Zingg <g.d0b3rm4n@gmail.com>
***************************************************************************/
* *
***************************************************************************/
-#ifndef KEDUVOCWQLREADER_H
-#define KEDUVOCWQLREADER_H
+#ifndef QMVOCWQLREADER_H
+#define QMVOCWQLREADER_H
#include <QString>
class QIODevice;
-class KEduVocDocument;
+class QmVocDocument;
-class KEduVocWqlReader
+class QmVocWqlReader
{
public:
- KEduVocWqlReader( QIODevice *file );
+ QmVocWqlReader( QIODevice *file );
- bool readDoc( KEduVocDocument *doc );
+ bool readDoc( QmVocDocument *doc );
QString errorMessage() const
{
private:
QIODevice *m_inputFile;
- KEduVocDocument *m_doc;
+ QmVocDocument *m_doc;
QString m_errorMessage;
};