macro_rules! get_attributes {
() => {
{
use crate::asterix::uap::common::datatypes::{AsterixAttribute, AttributeType};
vec![
AsterixAttribute::new(2, 1, 14 , 1, "3D height".to_string(), "height_3d".to_string(), AttributeType::UInt16),
]
}
};
}
pub(crate) use get_attributes;