11 lines
249 B
C++
11 lines
249 B
C++
#include "ProcessingItem.h"
|
|
|
|
bool ProcessingItem::isValid () const {
|
|
bool valid = true;
|
|
valid &= (!screenPos.isNull ());
|
|
valid &= (!source.isNull ());
|
|
valid &= (!recognized.isEmpty ());
|
|
valid &= (!translated.isEmpty ());
|
|
return valid;
|
|
}
|