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.
23 lines
644 B
23 lines
644 B
13 years ago
|
#include "UBCFFSubsetAdaptor.h"
|
||
|
#include "document/UBDocumentProxy.h"
|
||
|
|
||
|
UBCFFSubsetAdaptor::UBCFFSubsetAdaptor()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void UBCFFSubsetAdaptor::ConvertCFFFileToUbz(QString &cffSourceFolder, QString &destinationFolder)
|
||
|
{
|
||
|
//TODO create document proxy for destination file
|
||
|
// create document proxy with destination folder
|
||
|
// fill document proxy metadata
|
||
|
// create persistance manager to save data using proxy
|
||
|
// create UBCFFSubsetReader and make it parse cffSourceFolder
|
||
|
}
|
||
|
|
||
|
UBCFFSubsetAdaptor::UBCFFSubsetReader::UBCFFSubsetReader(UBDocumentProxy *proxy):
|
||
|
mReader(), mProxy(proxy)
|
||
|
{
|
||
|
//TODO parse
|
||
|
}
|
||
|
|