use crate::codec::gainmap_info::GainmapInfo;
use crate::core::data::Data;
pub struct Xmp {}
impl Xmp {
#[must_use]
pub fn from_data(_xmp_data: &Data) -> Self {
todo!()
}
#[must_use]
pub fn from_extended(_xmp_standard: &Data, _xmp_extended: &Data) -> Self {
todo!()
}
#[must_use]
#[inline]
pub fn get_gainmap_info_hdrgm(&self, _info: &mut GainmapInfo) -> bool {
todo!()
}
#[must_use]
#[inline]
pub fn get_gainmap_info_hdr_gain_map(&self, _info: &mut GainmapInfo) -> bool {
todo!()
}
#[must_use]
#[inline]
pub fn get_container_gainmap_location(&self, _offset: &mut usize, _size: &mut usize) -> bool {
todo!()
}
#[must_use]
#[inline]
pub fn get_extended_xmp_guid(&self) -> String {
todo!()
}
}