Peter Szilagyi | fbc56f9 | 2019-07-23 19:29:46 +0000 | [diff] [blame] | 1 | /*- |
| 2 | * Copyright (c) 2003-2017 Lev Walkin <vlm@lionet.info>. All rights reserved. |
| 3 | * Redistribution and modifications are permitted subject to BSD license. |
| 4 | */ |
| 5 | #ifndef _CONSTR_SEQUENCE_OF_H_ |
| 6 | #define _CONSTR_SEQUENCE_OF_H_ |
| 7 | |
| 8 | #include <asn_application.h> |
| 9 | #include <constr_SET_OF.h> /* Implemented using SET OF */ |
| 10 | |
| 11 | #ifdef __cplusplus |
| 12 | extern "C" { |
| 13 | #endif |
| 14 | |
| 15 | /* |
| 16 | * A set specialized functions dealing with the SEQUENCE OF type. |
| 17 | * Generally implemented using SET OF. |
| 18 | */ |
| 19 | asn_struct_compare_f SEQUENCE_OF_compare; |
| 20 | der_type_encoder_f SEQUENCE_OF_encode_der; |
| 21 | xer_type_encoder_f SEQUENCE_OF_encode_xer; |
| 22 | per_type_encoder_f SEQUENCE_OF_encode_uper; |
| 23 | per_type_encoder_f SEQUENCE_OF_encode_aper; |
| 24 | extern asn_TYPE_operation_t asn_OP_SEQUENCE_OF; |
| 25 | |
| 26 | #define SEQUENCE_OF_free SET_OF_free |
| 27 | #define SEQUENCE_OF_print SET_OF_print |
| 28 | #define SEQUENCE_OF_constraint SET_OF_constraint |
| 29 | #define SEQUENCE_OF_decode_ber SET_OF_decode_ber |
| 30 | #define SEQUENCE_OF_decode_xer SET_OF_decode_xer |
| 31 | #define SEQUENCE_OF_decode_oer SET_OF_decode_oer |
| 32 | #define SEQUENCE_OF_encode_oer SET_OF_encode_oer |
| 33 | #define SEQUENCE_OF_decode_uper SET_OF_decode_uper |
| 34 | #define SEQUENCE_OF_decode_aper SET_OF_decode_aper |
| 35 | #define SEQUENCE_OF_random_fill SET_OF_random_fill |
| 36 | |
| 37 | #ifdef __cplusplus |
| 38 | } |
| 39 | #endif |
| 40 | |
| 41 | #endif /* _CONSTR_SET_OF_H_ */ |