18 lines
279 B
C
18 lines
279 B
C
#ifndef PROCESSINGITEM_H
|
|
#define PROCESSINGITEM_H
|
|
|
|
#include <QPixmap>
|
|
|
|
struct ProcessingItem
|
|
{
|
|
QPoint screenPos;
|
|
QPixmap source;
|
|
QString recognized;
|
|
QString translated;
|
|
|
|
bool isValid () const;
|
|
};
|
|
Q_DECLARE_METATYPE(ProcessingItem)
|
|
|
|
#endif // PROCESSINGITEM_H
|