in between

This commit is contained in:
Dhanya Maliakal
2017-08-23 18:24:48 +02:00
parent a236a7a9aa
commit bdccddfe97
4 changed files with 50 additions and 0 deletions

View File

@ -9074,3 +9074,15 @@ void slsDetector::setAcquiringFlag(bool b){
bool slsDetector::getAcquiringFlag(){
return thisDetector->acquiringFlag;
}
void slsDetector::setExternalGuiFlag(bool b){
pthread_mutex_lock(&ms);
parentDet->setExternalGuiFlag(b);
pthread_mutex_unlock(&ms);
}
bool slsDetector::getExternalGuiFlag(){
return parentDet->getExternalGuiFlag();
}