Merge pull request #63 from BenceJanosSzabo/master
[deliverable/titan.core.git] / core / PreGenRecordOf.ttcn
CommitLineData
d44e3c4f 1/******************************************************************************
2 * Copyright (c) 2000-2016 Ericsson Telecom AB
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Balasko, Jeno
10 * Baranyi, Botond
11 *
12 ******************************************************************************/
a38c6d4c 13
14// This module contains 'record of' and 'set of' type declarations for certain base types.
15// It is used for pre-generating the C++ classes that represent these types,
16// so they are not re-generated every time they are declared in TTCN-3 or ASN.1
17// modules.
18module PreGenRecordOf {
19
20// 'record of' declarations (regular):
21type record of boolean PREGEN_RECORD_OF_BOOLEAN;
22
23type record of integer PREGEN_RECORD_OF_INTEGER;
24
25type record of float PREGEN_RECORD_OF_FLOAT;
26
27type record of bitstring PREGEN_RECORD_OF_BITSTRING;
28
29type record of hexstring PREGEN_RECORD_OF_HEXSTRING;
30
31type record of octetstring PREGEN_RECORD_OF_OCTETSTRING;
32
33type record of charstring PREGEN_RECORD_OF_CHARSTRING;
34
35type record of universal charstring PREGEN_RECORD_OF_UNIVERSAL_CHARSTRING;
36
37// 'record of' declarations (with optimized memory allocation):
38type record of boolean PREGEN_RECORD_OF_BOOLEAN_OPTIMIZED with { extension "optimize:memalloc" };
39
40type record of integer PREGEN_RECORD_OF_INTEGER_OPTIMIZED with { extension "optimize:memalloc" };
41
42type record of float PREGEN_RECORD_OF_FLOAT_OPTIMIZED with { extension "optimize:memalloc" };
43
44type record of bitstring PREGEN_RECORD_OF_BITSTRING_OPTIMIZED with { extension "optimize:memalloc" };
45
46type record of hexstring PREGEN_RECORD_OF_HEXSTRING_OPTIMIZED with { extension "optimize:memalloc" };
47
48type record of octetstring PREGEN_RECORD_OF_OCTETSTRING_OPTIMIZED with { extension "optimize:memalloc" };
49
50type record of charstring PREGEN_RECORD_OF_CHARSTRING_OPTIMIZED with { extension "optimize:memalloc" };
51
52type record of universal charstring PREGEN_RECORD_OF_UNIVERSAL_CHARSTRING_OPTIMIZED with { extension "optimize:memalloc" };
53
54// 'set of' declarations (regular):
55type set of boolean PREGEN_SET_OF_BOOLEAN;
56
57type set of integer PREGEN_SET_OF_INTEGER;
58
59type set of float PREGEN_SET_OF_FLOAT;
60
61type set of bitstring PREGEN_SET_OF_BITSTRING;
62
63type set of hexstring PREGEN_SET_OF_HEXSTRING;
64
65type set of octetstring PREGEN_SET_OF_OCTETSTRING;
66
67type set of charstring PREGEN_SET_OF_CHARSTRING;
68
69type set of universal charstring PREGEN_SET_OF_UNIVERSAL_CHARSTRING;
70
71// 'set of' declarations (with optimized memory allocation):
72type set of boolean PREGEN_SET_OF_BOOLEAN_OPTIMIZED with { extension "optimize:memalloc" };
73
74type set of integer PREGEN_SET_OF_INTEGER_OPTIMIZED with { extension "optimize:memalloc" };
75
76type set of float PREGEN_SET_OF_FLOAT_OPTIMIZED with { extension "optimize:memalloc" };
77
78type set of bitstring PREGEN_SET_OF_BITSTRING_OPTIMIZED with { extension "optimize:memalloc" };
79
80type set of hexstring PREGEN_SET_OF_HEXSTRING_OPTIMIZED with { extension "optimize:memalloc" };
81
82type set of octetstring PREGEN_SET_OF_OCTETSTRING_OPTIMIZED with { extension "optimize:memalloc" };
83
84type set of charstring PREGEN_SET_OF_CHARSTRING_OPTIMIZED with { extension "optimize:memalloc" };
85
86type set of universal charstring PREGEN_SET_OF_UNIVERSAL_CHARSTRING_OPTIMIZED with { extension "optimize:memalloc" };
87
88}
This page took 0.052892 seconds and 5 git commands to generate.