новые иконки в OpenBoard
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.
OpenBoard/src/adaptors/UBCFFSubsetAdaptor.h

28 lines
517 B

#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