ScreenTranslator/ProcessingItem.h

18 lines
279 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;
bool isValid () const;
2013-11-26 13:44:00 +07:00
};
Q_DECLARE_METATYPE(ProcessingItem)
#endif // PROCESSINGITEM_H