|
PACS System 0.1.0
PACS DICOM system library
|
DIMSE status codes. More...
#include <cstdint>#include <string_view>

Go to the source code of this file.
Namespaces | |
| namespace | kcenon |
| namespace | kcenon::pacs |
| namespace | kcenon::pacs::network |
| namespace | kcenon::pacs::network::dimse |
Typedefs | |
| using | kcenon::pacs::network::dimse::status_code = uint16_t |
| DIMSE status code type alias. | |
Functions | |
Status Type Categories | |
| constexpr bool | kcenon::pacs::network::dimse::is_success (status_code status) noexcept |
| Check if status indicates success. | |
| constexpr bool | kcenon::pacs::network::dimse::is_pending (status_code status) noexcept |
| Check if status indicates pending (more results) | |
| constexpr bool | kcenon::pacs::network::dimse::is_cancel (status_code status) noexcept |
| Check if status indicates cancellation. | |
| constexpr bool | kcenon::pacs::network::dimse::is_warning (status_code status) noexcept |
| Check if status indicates a warning. | |
| constexpr bool | kcenon::pacs::network::dimse::is_failure (status_code status) noexcept |
| Check if status indicates a failure. | |
| constexpr bool | kcenon::pacs::network::dimse::is_final (status_code status) noexcept |
| Check if this is a final status (operation complete) | |
Status Code String Conversion | |
| constexpr std::string_view | kcenon::pacs::network::dimse::status_description (status_code status) noexcept |
| Get a human-readable description of a status code. | |
| constexpr std::string_view | kcenon::pacs::network::dimse::status_category (status_code status) noexcept |
| Get the category name for a status code. | |
DIMSE status codes.
This file defines the DIMSE status codes as specified in DICOM PS3.7. Status codes are returned in response messages to indicate the result of a DIMSE operation.
Definition in file status_codes.h.