ScreenTranslator/ProcessingItem.h

21 lines
333 B
C
Raw Normal View History

2013-11-26 13:44:00 +07:00
#ifndef PROCESSINGITEM_H
#define PROCESSINGITEM_H
#include <QPixmap>
struct ProcessingItem
{
QPoint screenPos;
QPixmap source;
QString recognized;
QString translated;
2014-04-04 21:39:10 +07:00
QString ocrLanguage;
QString sourceLanguage;
bool isValid () const;
2013-11-26 13:44:00 +07:00
};
Q_DECLARE_METATYPE(ProcessingItem)
#endif // PROCESSINGITEM_H