comparison OrthancFramework/Sources/Enumerations.h @ 4469:5ffa4e14e4bd

move old enum TransferSyntax from OrthancFramework to OrthancServer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 25 Jan 2021 18:12:59 +0100
parents 9c070a34de18
children 68f52897c119
comparison
equal deleted inserted replaced
4468:9c070a34de18 4469:5ffa4e14e4bd
625 DicomRequestType_Store, 625 DicomRequestType_Store,
626 DicomRequestType_NAction, 626 DicomRequestType_NAction,
627 DicomRequestType_NEventReport 627 DicomRequestType_NEventReport
628 }; 628 };
629 629
630 enum TransferSyntax
631 {
632 TransferSyntax_Deflated,
633 TransferSyntax_Jpeg,
634 TransferSyntax_Jpeg2000,
635 TransferSyntax_JpegLossless,
636 TransferSyntax_Jpip,
637 TransferSyntax_Mpeg2,
638 TransferSyntax_Mpeg4, // New in Orthanc 1.6.0
639 TransferSyntax_Rle
640 };
641
642 enum JobState 630 enum JobState
643 { 631 {
644 JobState_Pending, 632 JobState_Pending,
645 JobState_Running, 633 JobState_Running,
646 JobState_Success, 634 JobState_Success,
786 774
787 ORTHANC_PUBLIC 775 ORTHANC_PUBLIC
788 const char* EnumerationToString(DicomRequestType type); 776 const char* EnumerationToString(DicomRequestType type);
789 777
790 ORTHANC_PUBLIC 778 ORTHANC_PUBLIC
791 const char* EnumerationToString(TransferSyntax syntax);
792
793 ORTHANC_PUBLIC
794 const char* EnumerationToString(DicomVersion version); 779 const char* EnumerationToString(DicomVersion version);
795 780
796 ORTHANC_PUBLIC 781 ORTHANC_PUBLIC
797 const char* EnumerationToString(ValueRepresentation vr); 782 const char* EnumerationToString(ValueRepresentation vr);
798 783