23 #ifndef __QGPGME_DATAPROVIDER_H__ 24 #define __QGPGME_DATAPROVIDER_H__ 26 #include "qgpgme_export.h" 27 #include <interfaces/dataprovider.h> 30 #include <QtCore/QByteArray> 45 const QByteArray &data()
const 53 bool isSupported(Operation)
const 57 ssize_t read(
void *buffer,
size_t bufSize);
58 ssize_t write(
const void *buffer,
size_t bufSize);
59 off_t seek(off_t offset,
int whence);
73 const std::shared_ptr<QIODevice> &ioDevice()
const 81 bool isSupported(Operation)
const;
82 ssize_t read(
void *buffer,
size_t bufSize);
83 ssize_t write(
const void *buffer,
size_t bufSize);
84 off_t seek(off_t offset,
int whence);
88 const std::shared_ptr<QIODevice> mIO;
89 bool mErrorOccurred : 1;
90 bool mHaveQProcess : 1;
Definition: abstractimportjob.h:47
Definition: dataprovider.h:38
Definition: dataprovider.h:67