UBImportPDF.h 481 Bytes
Newer Older
Claudio Valerio's avatar
Claudio Valerio committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23

#ifndef UBIMPORTPDF_H_
#define UBIMPORTPDF_H_

#include <QtGui>
#include "UBImportAdaptor.h"
class UBDocumentProxy;

class UBImportPDF : public UBImportAdaptor
{
    Q_OBJECT;

    public:
        UBImportPDF(QObject *parent = 0);
        virtual ~UBImportPDF();

        virtual QStringList supportedExtentions();
        virtual QString importFileFilter();

        virtual bool addFileToDocument(UBDocumentProxy* pDocument, const QFile& pFile);
};

#endif /* UBIMPORTPDF_H_ */