FLImaging 6.5.8.1
ByteOrderUtilities.h
1#pragma once
2
12namespace FLImaging
13{
15 namespace Base
16 {
24 template <typename T>
25 class FL_EXPORT CByteOrderUtilities : public CFLBase
26 {
27 protected:
36
37 public:
38
50 static T SwitchByteOrder(T tValue);
51
69 static const CResult SwitchByteOrder(T* pArrTValues, int64_t i64Count, T* pArrTResults = nullptr);
70
71
72 DeclareGetClassType();
73 };
74 }
75}
76
Byte Order 유틸리티 클래스
Definition ByteOrderUtilities.h:26
static const CResult SwitchByteOrder(T *pArrTValues, int64_t i64Count, T *pArrTResults=nullptr)
입력된 배열의 바이트 오더(엔디안)를 전환합니다.
static T SwitchByteOrder(T tValue)
입력된 값의 바이트 오더(엔디안)를 변환해서 전환 합니다.
FLImaging의 최상위 기저 클래스
Definition FLBase.h:36
FLImaging 모듈의 수행 결과 객체
Definition ResultsDef.h:1514