예제 #1
0
IntraOpImagingWorkflowState::IntraOpImagingWorkflowState(QState* parent, StateServiceBackendPtr backend) :
				WorkflowState(parent, "IntraOpImagingUid", "Intraoperative Imaging", backend)
{
	connect(mBackend->getPatientService().get(), SIGNAL(patientChanged()), this, SLOT(canEnterSlot()));
}
예제 #2
0
RegistrationWorkflowState::RegistrationWorkflowState(QState* parent, CoreServicesPtr services) :
				WorkflowState(parent, "RegistrationUid", "Registration", services)
{
	connect(mServices->patient().get(), SIGNAL(patientChanged()), this, SLOT(canEnterSlot()));
}
예제 #3
0
RegistrationWorkflowState::RegistrationWorkflowState(QState* parent, StateServiceBackendPtr backend) :
				WorkflowState(parent, "RegistrationUid", "Registration", backend)
{
	connect(mBackend->getPatientService().get(), SIGNAL(patientChanged()), this, SLOT(canEnterSlot()));
}
예제 #4
0
IntraOpImagingWorkflowState::IntraOpImagingWorkflowState(QState* parent, CoreServicesPtr services) :
				WorkflowState(parent, "IntraOpImagingUid", "Intraoperative Imaging", services)
{
	connect(mServices->patient().get(), SIGNAL(patientChanged()), this, SLOT(canEnterSlot()));
}