PACS System 0.1.0
PACS DICOM system library
Loading...
Searching...
No Matches
byte_order.h
Go to the documentation of this file.
1// BSD 3-Clause License
2// Copyright (c) 2021-2025, 🍀☀🌕🌥 🌊
3// See the LICENSE file in the project root for full license information.
4
11#ifndef PACS_ENCODING_BYTE_ORDER_HPP
12#define PACS_ENCODING_BYTE_ORDER_HPP
13
15
22enum class byte_order {
25};
26
33enum class vr_encoding {
34 implicit,
36};
37
38} // namespace kcenon::pacs::encoding
39
40#endif // PACS_ENCODING_BYTE_ORDER_HPP
byte_order
Byte ordering for DICOM data encoding.
Definition byte_order.h:22
@ little_endian
Least significant byte first (most common)
@ big_endian
Most significant byte first (legacy, rarely used)
vr_encoding
Value Representation encoding mode.
Definition byte_order.h:33
@ explicit_vr
VR explicitly encoded in the data stream.
@ implicit
VR determined from data dictionary lookup.