/** * @author ETSI / STF545 * @version $URL$ * $ID:$ * @desc This module provides the custom templates for ITS HTTP based protocols. * @copyright ETSI Copyright Notification * No part may be reproduced except as authorized by written permission. * The copyright and the foregoing restriction extend to reproduction in all media. * All rights reserved. */ module LibItsHttp_BinaryTemplates { // LibItsHttp import from LibItsHttp_BinaryMessageBodyTypes all; // TODO Add here your custom binary import template (value) BinaryBody m_binary_body_raw( in template (value) octetstring p_raw ) := { raw := p_raw } // End of template m_binary_body_raw template (present) BinaryBody mw_binary_body_raw( template (present) octetstring p_raw := ? ) := { raw := p_raw } // End of template mw_binary_body_raw // TODO Add here your custom binary template } // End of module LibItsHttp_BinaryTemplates