📄 wlfsim.h
字号:
/** This function returns OFTrue if the dataset's and the search mask's values in * attributes scheduled procedure step start date and scheduled procedure step * start time match; otherwise OFFalse will be returned. * @param datasetDateValue Value for the corresponding attribute in the dataset; might be NULL. * @param datasetTimeValue Value for the corresponding attribute in the dataset; might be NULL. * @param searchMaskDateValue Value for the corresponding attribute in the search mask; might be NULL. * @param searchMaskTimeValue Value for the corresponding attribute in the search mask; might be NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool ScheduledProcedureStepStartDateTimesMatch( const char *datasetDateValue, const char *datasetTimeValue, const char *searchMaskDateValue, const char *searchMaskTimeValue ); /** This function returns OFTrue if the dataset's and the search mask's values in * attribute modality match; otherwise OFFalse will be returned. * @param datasetValue Value for the corresponding attribute in the dataset; might be NULL. * @param searchMaskValue Value for the corresponding attribute in the search mask; never NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool ModalitiesMatch( const char *datasetValue, const char *searchMaskValue ); /** This function returns OFTrue if the dataset's and the search mask's values in * attribute scheduled performing physician's names match; otherwise OFFalse will be returned. * @param datasetValue Value for the corresponding attribute in the dataset; might be NULL. * @param searchMaskValue Value for the corresponding attribute in the search mask; never NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool ScheduledPerformingPhysiciansNamesMatch( const char *datasetValue, const char *searchMaskValue ); /** This function returns OFTrue if the dataset's and the search mask's values in * attribute patient's names match; otherwise OFFalse will be returned. * @param datasetValue Value for the corresponding attribute in the dataset; might be NULL. * @param searchMaskValue Value for the corresponding attribute in the search mask; never NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool PatientsNamesMatch( const char *datasetValue, const char *searchMaskValue ); /** This function returns OFTrue if the dataset's and the search mask's values in * attribute patient id match; otherwise OFFalse will be returned. * @param datasetValue Value for the corresponding attribute in the dataset; might be NULL. * @param searchMaskValue Value for the corresponding attribute in the search mask; never NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool PatientIdsMatch( const char *datasetValue, const char *searchMaskValue ); /** This function returns OFTrue if the dataset's and the search mask's values in * attribute accession number match; otherwise OFFalse will be returned. * @param datasetValue Value for the corresponding attribute in the dataset; might be NULL. * @param searchMaskValue Value for the corresponding attribute in the search mask; never NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool AccessionNumbersMatch( const char *datasetValue, const char *searchMaskValue ); /** This function returns OFTrue if the dataset's and the search mask's values in * attribute requested procedure id match; otherwise OFFalse will be returned. * @param datasetValue Value for the corresponding attribute in the dataset; might be NULL. * @param searchMaskValue Value for the corresponding attribute in the search mask; never NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool RequestedProcedureIdsMatch( const char *datasetValue, const char *searchMaskValue ); /** This function returns OFTrue if the dataset's and the search mask's values in * attribute referring physician's name match; otherwise OFFalse will be returned. * @param datasetValue Value for the corresponding attribute in the dataset; might be NULL. * @param searchMaskValue Value for the corresponding attribute in the search mask; never NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool ReferringPhysiciansNamesMatch( const char *datasetValue, const char *searchMaskValue ); /** This function returns OFTrue if the dataset's and the search mask's values in * attribute patient sex match; otherwise OFFalse will be returned. * @param datasetValue Value for the corresponding attribute in the dataset; might be NULL. * @param searchMaskValue Value for the corresponding attribute in the search mask; never NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool PatientsSexesMatch( const char *datasetValue, const char *searchMaskValue ); /** This function returns OFTrue if the dataset's and the search mask's values in * attribute requesting physician match; otherwise OFFalse will be returned. * @param datasetValue Value for the corresponding attribute in the dataset; might be NULL. * @param searchMaskValue Value for the corresponding attribute in the search mask; never NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool RequestingPhysiciansMatch( const char *datasetValue, const char *searchMaskValue ); /** This function returns OFTrue if the dataset's and the search mask's values in * attribute admission id match; otherwise OFFalse will be returned. * @param datasetValue Value for the corresponding attribute in the dataset; might be NULL. * @param searchMaskValue Value for the corresponding attribute in the search mask; never NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool AdmissionIdsMatch( const char *datasetValue, const char *searchMaskValue ); /** This function returns OFTrue if the dataset's and the search mask's values in * attribute requested procedure priorities match; otherwise OFFalse will be returned. * @param datasetValue Value for the corresponding attribute in the dataset; might be NULL. * @param searchMaskValue Value for the corresponding attribute in the search mask; never NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool RequestedProcedurePrioritiesMatch( const char *datasetValue, const char *searchMaskValue ); /** This function returns OFTrue if the dataset's and the search mask's values in * attribute patient's birth date match; otherwise OFFalse will be returned. * @param datasetValue Value for the corresponding attribute in the dataset; might be NULL. * @param searchMaskValue Value for the corresponding attribute in the search mask; never NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool PatientsBirthDatesMatch( const char *datasetValue, const char *searchMaskValue ); /** This function performs a date time range match and returns OFTrue if the dataset's * and the search mask's values in the corresponding attributes match; otherwise OFFalse * will be returned. * @param datasetDateValue Value for the corresponding attribute in the dataset; might be NULL. * @param datasetTimeValue Value for the corresponding attribute in the dataset; might be NULL. * @param searchMaskDateValue Value for the corresponding attribute in the search mask; never NULL. * @param searchMaskTimeValue Value for the corresponding attribute in the search mask; never NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool DateTimeRangeMatch( const char *datasetDateValue, const char *datasetTimeValue, const char *searchMaskDateValue, const char *searchMaskTimeValue ); /** This function performs a date range match and returns OFTrue if the dataset's and * the search mask's values in the corresponding attributes match; otherwise OFFalse * will be returned. * @param datasetDateValue Value for the corresponding attribute in the dataset; might be NULL. * @param searchMaskDateValue Value for the corresponding attribute in the search mask; never NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool DateRangeMatch( const char *datasetDateValue, const char *searchMaskDateValue ); /** This function performs a time range match and returns OFTrue if the dataset's and * the search mask's values in the corresponding attributes match; otherwise OFFalse * will be returned. * @param datasetTimeValue Value for the corresponding attribute in the dataset; might be NULL. * @param searchMaskTimeValue Value for the corresponding attribute in the search mask; never NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool TimeRangeMatch( const char *datasetTimeValue, const char *searchMaskTimeValue ); /** This function performs a date time single value match and returns OFTrue if the dataset's * and the search mask's values in the corresponding attributes match; otherwise OFFalse * will be returned. * @param datasetDateValue Value for the corresponding attribute in the dataset; might be NULL. * @param datasetTimeValue Value for the corresponding attribute in the dataset; might be NULL. * @param searchMaskDateValue Value for the corresponding attribute in the search mask; never NULL. * @param searchMaskTimeValue Value for the corresponding attribute in the search mask; never NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool DateTimeSingleValueMatch( const char *datasetDateValue, const char *datasetTimeValue, const char *searchMaskDateValue, const char *searchMaskTimeValue ); /** This function performs a date single value match and returns OFTrue if the dataset's * and the search mask's values in the corresponding attributes match; otherwise OFFalse * will be returned. * @param datasetDateValue Value for the corresponding attribute in the dataset; might be NULL. * @param searchMaskDateValue Value for the corresponding attribute in the search mask; never NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool DateSingleValueMatch( const char *datasetDateValue, const char *searchMaskDateValue ); /** This function performs a time single value match and returns OFTrue if the dataset's * and the search mask's values in the corresponding attributes match; otherwise OFFalse * will be returned. * @param datasetTimeValue Value for the corresponding attribute in the dataset; might be NULL. * @param searchMaskTimeValue Value for the corresponding attribute in the search mask; never NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool TimeSingleValueMatch( const char *datasetTimeValue, const char *searchMaskTimeValue ); /** This function returns OFTrue if the dataset's and the search mask's values * match while performing a case sensitive single value match; otherwise OFFalse * will be returned. * @param datasetValue Value for the corresponding attribute in the dataset; never NULL. * @param searchMaskValue Value for the corresponding attribute in the search mask; never NULL. * @return OFTrue if the values match, OFFalse otherwise. */ OFBool CaseSensitiveSingleValueMatch( const char *datasetValue, const char *searchMaskValue ); /** This function returns OFTrue if the dataset's and the search mask's values * match while performing a wildcard match; otherwise OFFalse will be returned. * @param datasetValue Value for the corresponding attribute in the dataset; never NULL. * @param searchMaskValue Value for the corresponding attribute in the search mask; never NULL.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -