/* ------------------------------------------- Copyright ZKA Technologies. ------------------------------------------- */ #ifndef FB_ACCESSIBILITY_H #define FB_ACCESSIBILITY_H #include #include #include #include #include namespace CG { using namespace Kernel; /// @brief common User interface class. class UIAccessibilty final { explicit UIAccessibilty() = default; ~UIAccessibilty() = default; public: ZKA_COPY_DELETE(UIAccessibilty); STATIC UIAccessibilty& The() { STATIC UIAccessibilty the; return the; } Int64 Width() noexcept { return kHandoverHeader->f_GOP.f_Width; } Int64 Height() noexcept { return kHandoverHeader->f_GOP.f_Height; } }; } // namespace CG #endif // !FB_ACCESSIBILITY_H_