LibItsDenm_EncdecDeclarations.ttcn 712 Bytes
Newer Older
module LibItsDenm_EncdecDeclarations {
    
    import from LibItsDenm_TestSystem all;
    import from DENM_PDU_Descriptions language "ASN.1:1997" all;
    
    external function fx_enc_DenmReq (DenmReq p) return bitstring
        with {extension "prototype(convert) encode(LibIts_Interface)"}
    
    external function fx_enc_DENM (DENM p) return octetstring
        with {extension "prototype(convert) encode(BER:BER_ENCODE_CER)"}
    
    /* not needed yet, no decvalue is used in TTCN-3 code
    external function fx_dec_DenmReq (inout bitstring b, out DenmReq p) return integer
        with {extension "prototype(sliding) decode(LibIts_Interface)"}
    */
} // End of module LibItsDenm_EncdecDeclarations