LibItsHttp_BinaryMessageBodyTypes.ttcn 948 Bytes
Newer Older
Yann Garcia's avatar
Yann Garcia committed
/**
 *    @author   ETSI / STF545
 *    @version  $URL$
 *              $ID:$
 *    @desc     This module provides the custom binary types 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_BinaryMessageBodyTypes {
    
  /**
   * This file volontary contains a trivial declaration of the type BinaryBodu. 
   * In accordance with your TTCN-3 module LibItsHttp_XMLTypes, you have to change the BinaryBody typing.
   */
  // TODO Add here your custom binary import
  
  type union BinaryBody {
    // TODO Add here your custom variants
    octetstring        raw
  } with {
    variant ""
  }
      
} // End of LibItsHttp_BinaryMessageBodyTypes