ScreenTranslator/ProcessingItem.cpp

10 lines
212 B
C++
Raw Normal View History

#include "ProcessingItem.h"
2015-09-23 01:41:08 +07:00
bool ProcessingItem::isValid () const {
bool valid = true;
valid &= (!screenPos.isNull ());
valid &= (!source.isNull ());
valid &= (!recognized.isEmpty ());
return valid;
}