mirror of
https://github.com/YACReader/yacreader
synced 2025-07-20 05:54:39 -04:00
12 lines
226 B
C++
12 lines
226 B
C++
#ifndef EXTRACT_DELEGATE_H
|
|
#define EXTRACT_DELEGATE_H
|
|
|
|
#include <QByteArray>
|
|
|
|
class ExtractDelegate
|
|
{
|
|
public:
|
|
virtual void fileExtracted(int index, const QByteArray & rawData) = 0;
|
|
};
|
|
|
|
#endif //EXTRACT_DELEGATE_H
|