You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
517 B
28 lines
517 B
14 years ago
|
#ifndef UBCFFSUBSETADAPTOR_H
|
||
|
#define UBCFFSUBSETADAPTOR_H
|
||
|
|
||
|
#include <QtXml>
|
||
|
#include <QString>
|
||
|
|
||
|
class UBDocumentProxy;
|
||
|
|
||
|
class UBCFFSubsetAdaptor
|
||
|
{
|
||
|
public:
|
||
|
UBCFFSubsetAdaptor();
|
||
|
|
||
|
static void ConvertCFFFileToUbz(QString &cffSourceFolder, QString &destinationFolder);
|
||
|
|
||
|
private:
|
||
|
class UBCFFSubsetReader
|
||
|
{
|
||
|
public:
|
||
|
UBCFFSubsetReader(UBDocumentProxy *proxy);
|
||
|
|
||
|
QXmlStreamReader mReader;
|
||
|
UBDocumentProxy *mProxy;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
#endif // UBCFFSUBSETADAPTOR_H
|