summaryrefslogtreecommitdiff
path: root/titan/MNCC_Types.hh
blob: f7c697afd7beec3b87350b47944bc0a8894beb21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
// This C++ header file was generated by the TTCN-3 compiler
// of the TTCN-3 Test Executor version CRL 113 200/6 R3B
// for Harald Welte (laforge@nataraja) on Sun Mar 25 21:50:30 2018

// Copyright (c) 2000-2017 Ericsson Telecom AB

// Do not edit this file unless you know what you are doing.

#ifndef MNCC__Types_HH
#define MNCC__Types_HH

#ifdef TITAN_RUNTIME_2
#error Generated code does not match with used runtime.\
 Code was generated without -R option but -DTITAN_RUNTIME_2 was used.
#endif

/* Header file includes */

#include <TTCN3.hh>
#include "Osmocom_Types.hh"

#if TTCN3_VERSION != 60301
#error Version mismatch detected.\
 Please check the version of the TTCN-3 compiler and the base library.\
 Run make clean and rebuild the project if the version of the compiler changed recently.
#endif

#ifndef LINUX
#error This file should be compiled on LINUX
#endif

#undef MNCC__Types_HH
#endif

namespace MNCC__Types {

/* Forward declarations of classes */

class GSM48__bcap__ra;
class GSM48__bcap__ra_template;
class GSM48__bcap__sig__access;
class GSM48__bcap__sig__access_template;
class GSM48__bcap__user__rate;
class GSM48__bcap__user__rate_template;
class GSM48__bcap__parity;
class GSM48__bcap__parity_template;
class GSM48__bcap__interm__rate;
class GSM48__bcap__interm__rate_template;
class GSM48__bcap__transp;
class GSM48__bcap__transp_template;
class GSM48__bcap__modem__type;
class GSM48__bcap__modem__type_template;
class MNCC__MsgType;
class MNCC__MsgType_template;
class MNCC__bearer__cap__data;
class MNCC__bearer__cap__data_template;
typedef PreGenRecordOf::PREGEN__RECORD__OF__INTEGER MNCC__speech__vers;
typedef PreGenRecordOf::PREGEN__RECORD__OF__INTEGER_template MNCC__speech__vers_template;
class MNCC__bearer__cap;
class MNCC__bearer__cap_template;
class GSM48__type__of__number;
class GSM48__type__of__number_template;
class GSM48__num__plan__ind;
class GSM48__num__plan__ind_template;
class GSM48__present__ind;
class GSM48__present__ind_template;
class GSM48__screening__ind;
class GSM48__screening__ind_template;
class MNCC__number;
class MNCC__number_template;
class GSM48__cause__coding;
class GSM48__cause__coding_template;
class GSM48__cause__loc;
class GSM48__cause__loc_template;
class MNCC__cause;
class MNCC__cause_template;
class MNCC__useruser;
class MNCC__useruser_template;
class MNCC__progress;
class MNCC__progress_template;
class MNCC__cccap;
class MNCC__cccap_template;
class MNCC__bcap;
class MNCC__bcap_template;
class MNCC__PDU__Signal;
class MNCC__PDU__Signal_template;
class MNCC__PDU__Data;
class MNCC__PDU__Data_template;
class MNCC__PDU__Rtp;
class MNCC__PDU__Rtp_template;
class MNCC__PDU__Hello;
class MNCC__PDU__Hello_template;
class MNCC__MsgUnion;
class MNCC__MsgUnion_template;
class MNCC__PDU;
class MNCC__PDU_template;

} /* end of namespace */

#ifndef MNCC__Types_HH
#define MNCC__Types_HH

namespace MNCC__Types {

/* Type definitions */

typedef INTEGER int_;
typedef INTEGER_template int__template;
typedef INTEGER MNCC__notify;
typedef INTEGER_template MNCC__notify_template;
typedef CHARSTRING MNCC__keypad;
typedef CHARSTRING_template MNCC__keypad_template;

/* Class definitions */

class GSM48__bcap__ra : public Base_Type { // enum
friend class GSM48__bcap__ra_template;
public:
enum enum_type { GSM48__BCAP__RA__NONE = 0, GSM48__BCAP__RA__V110__X30 = 1, GSM48__BCAP__RA__X31 = 2, GSM48__BCAP__RA__OTHER = 3, UNKNOWN_VALUE = 4, UNBOUND_VALUE = 5 };
private:
enum_type enum_value;

public:
GSM48__bcap__ra();
GSM48__bcap__ra(int other_value);
GSM48__bcap__ra(enum_type other_value);
GSM48__bcap__ra(const GSM48__bcap__ra& other_value);

GSM48__bcap__ra& operator=(int other_value);
GSM48__bcap__ra& operator=(enum_type other_value);
GSM48__bcap__ra& operator=(const GSM48__bcap__ra& other_value);

boolean operator==(enum_type other_value) const;
boolean operator==(const GSM48__bcap__ra& other_value) const;
inline boolean operator!=(enum_type other_value) const { return !(*this == other_value); }
inline boolean operator!=(const GSM48__bcap__ra& other_value) const { return !(*this == other_value); }
boolean operator<(enum_type other_value) const;
boolean operator<(const GSM48__bcap__ra& other_value) const;
boolean operator>(enum_type other_value) const;
boolean operator>(const GSM48__bcap__ra& other_value) const;
inline boolean operator<=(enum_type other_value) const { return !(*this > other_value); }
inline boolean operator<=(const GSM48__bcap__ra& other_value) const { return !(*this > other_value); }
inline boolean operator>=(enum_type other_value) const { return !(*this < other_value); }
inline boolean operator>=(const GSM48__bcap__ra& other_value) const { return !(*this < other_value); }

static const char *enum_to_str(enum_type enum_par);
static enum_type str_to_enum(const char *str_par);
static boolean is_valid_enum(int int_par);

static int enum2int(enum_type enum_par);
static int enum2int(const GSM48__bcap__ra& enum_par);
int as_int() const { return enum2int(enum_value); }
void from_int(int p_val) { *this = p_val; }
void int2enum(int int_val);
operator enum_type() const;
inline boolean is_bound() const { return enum_value != UNBOUND_VALUE; }
inline boolean is_value() const { return enum_value != UNBOUND_VALUE; }
inline void clean_up(){ enum_value = UNBOUND_VALUE; }
inline boolean is_present() const { return is_bound(); }
void log() const;
void set_param(Module_Param& param);
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class GSM48__bcap__ra_template : public Base_Template {
union {
GSM48__bcap__ra::enum_type single_value;
struct {
unsigned int n_values;
GSM48__bcap__ra_template *list_value;
} value_list;
};

void copy_template(const GSM48__bcap__ra_template& other_value);

public:
GSM48__bcap__ra_template();
GSM48__bcap__ra_template(template_sel other_value);
GSM48__bcap__ra_template(int other_value);
GSM48__bcap__ra_template(GSM48__bcap__ra::enum_type other_value);
GSM48__bcap__ra_template(const GSM48__bcap__ra& other_value);
GSM48__bcap__ra_template(const OPTIONAL<GSM48__bcap__ra>& other_value);
GSM48__bcap__ra_template(const GSM48__bcap__ra_template& other_value);
~GSM48__bcap__ra_template();

boolean is_bound() const;
boolean is_value() const;
void clean_up();
GSM48__bcap__ra_template& operator=(template_sel other_value);
GSM48__bcap__ra_template& operator=(int other_value);
GSM48__bcap__ra_template& operator=(GSM48__bcap__ra::enum_type other_value);
GSM48__bcap__ra_template& operator=(const GSM48__bcap__ra& other_value);
GSM48__bcap__ra_template& operator=(const OPTIONAL<GSM48__bcap__ra>& other_value);
GSM48__bcap__ra_template& operator=(const GSM48__bcap__ra_template& other_value);

boolean match(GSM48__bcap__ra::enum_type other_value, boolean legacy = FALSE) const;
boolean match(const GSM48__bcap__ra& other_value, boolean legacy = FALSE) const;
GSM48__bcap__ra::enum_type valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
GSM48__bcap__ra_template& list_item(unsigned int list_index);
void log() const;
void log_match(const GSM48__bcap__ra& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
};

class GSM48__bcap__sig__access : public Base_Type { // enum
friend class GSM48__bcap__sig__access_template;
public:
enum enum_type { GSM48__BCAP__SA__NONE = 0, GSM48__BCAP__SA__I440__I450 = 1, GSM48__BCAP__SA__X21 = 2, GSM48__BCAP__SA__X28__DP__IN = 3, GSM48__BCAP__SA__X28__DP__UN = 4, GSM48__BCAP__SA__X28__NDP = 5, GSM48__BCAP__SA__X32 = 6, UNKNOWN_VALUE = 7, UNBOUND_VALUE = 8 };
private:
enum_type enum_value;

public:
GSM48__bcap__sig__access();
GSM48__bcap__sig__access(int other_value);
GSM48__bcap__sig__access(enum_type other_value);
GSM48__bcap__sig__access(const GSM48__bcap__sig__access& other_value);

GSM48__bcap__sig__access& operator=(int other_value);
GSM48__bcap__sig__access& operator=(enum_type other_value);
GSM48__bcap__sig__access& operator=(const GSM48__bcap__sig__access& other_value);

boolean operator==(enum_type other_value) const;
boolean operator==(const GSM48__bcap__sig__access& other_value) const;
inline boolean operator!=(enum_type other_value) const { return !(*this == other_value); }
inline boolean operator!=(const GSM48__bcap__sig__access& other_value) const { return !(*this == other_value); }
boolean operator<(enum_type other_value) const;
boolean operator<(const GSM48__bcap__sig__access& other_value) const;
boolean operator>(enum_type other_value) const;
boolean operator>(const GSM48__bcap__sig__access& other_value) const;
inline boolean operator<=(enum_type other_value) const { return !(*this > other_value); }
inline boolean operator<=(const GSM48__bcap__sig__access& other_value) const { return !(*this > other_value); }
inline boolean operator>=(enum_type other_value) const { return !(*this < other_value); }
inline boolean operator>=(const GSM48__bcap__sig__access& other_value) const { return !(*this < other_value); }

static const char *enum_to_str(enum_type enum_par);
static enum_type str_to_enum(const char *str_par);
static boolean is_valid_enum(int int_par);

static int enum2int(enum_type enum_par);
static int enum2int(const GSM48__bcap__sig__access& enum_par);
int as_int() const { return enum2int(enum_value); }
void from_int(int p_val) { *this = p_val; }
void int2enum(int int_val);
operator enum_type() const;
inline boolean is_bound() const { return enum_value != UNBOUND_VALUE; }
inline boolean is_value() const { return enum_value != UNBOUND_VALUE; }
inline void clean_up(){ enum_value = UNBOUND_VALUE; }
inline boolean is_present() const { return is_bound(); }
void log() const;
void set_param(Module_Param& param);
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class GSM48__bcap__sig__access_template : public Base_Template {
union {
GSM48__bcap__sig__access::enum_type single_value;
struct {
unsigned int n_values;
GSM48__bcap__sig__access_template *list_value;
} value_list;
};

void copy_template(const GSM48__bcap__sig__access_template& other_value);

public:
GSM48__bcap__sig__access_template();
GSM48__bcap__sig__access_template(template_sel other_value);
GSM48__bcap__sig__access_template(int other_value);
GSM48__bcap__sig__access_template(GSM48__bcap__sig__access::enum_type other_value);
GSM48__bcap__sig__access_template(const GSM48__bcap__sig__access& other_value);
GSM48__bcap__sig__access_template(const OPTIONAL<GSM48__bcap__sig__access>& other_value);
GSM48__bcap__sig__access_template(const GSM48__bcap__sig__access_template& other_value);
~GSM48__bcap__sig__access_template();

boolean is_bound() const;
boolean is_value() const;
void clean_up();
GSM48__bcap__sig__access_template& operator=(template_sel other_value);
GSM48__bcap__sig__access_template& operator=(int other_value);
GSM48__bcap__sig__access_template& operator=(GSM48__bcap__sig__access::enum_type other_value);
GSM48__bcap__sig__access_template& operator=(const GSM48__bcap__sig__access& other_value);
GSM48__bcap__sig__access_template& operator=(const OPTIONAL<GSM48__bcap__sig__access>& other_value);
GSM48__bcap__sig__access_template& operator=(const GSM48__bcap__sig__access_template& other_value);

boolean match(GSM48__bcap__sig__access::enum_type other_value, boolean legacy = FALSE) const;
boolean match(const GSM48__bcap__sig__access& other_value, boolean legacy = FALSE) const;
GSM48__bcap__sig__access::enum_type valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
GSM48__bcap__sig__access_template& list_item(unsigned int list_index);
void log() const;
void log_match(const GSM48__bcap__sig__access& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
};

class GSM48__bcap__user__rate : public Base_Type { // enum
friend class GSM48__bcap__user__rate_template;
public:
enum enum_type { GSM48__BCAP__UR__NONE = 0, GSM48__BCAP__UR__300 = 1, GSM48__BCAP__UR__1200 = 2, GSM48__BCAP__UR__2400 = 3, GSM48__BCAP__UR__4800 = 4, GSM48__BCAP__UR__9600 = 5, GSM48__BCAP__UR__12000 = 6, GSM48__BCAP__UR__1200__75 = 7, UNKNOWN_VALUE = 8, UNBOUND_VALUE = 9 };
private:
enum_type enum_value;

public:
GSM48__bcap__user__rate();
GSM48__bcap__user__rate(int other_value);
GSM48__bcap__user__rate(enum_type other_value);
GSM48__bcap__user__rate(const GSM48__bcap__user__rate& other_value);

GSM48__bcap__user__rate& operator=(int other_value);
GSM48__bcap__user__rate& operator=(enum_type other_value);
GSM48__bcap__user__rate& operator=(const GSM48__bcap__user__rate& other_value);

boolean operator==(enum_type other_value) const;
boolean operator==(const GSM48__bcap__user__rate& other_value) const;
inline boolean operator!=(enum_type other_value) const { return !(*this == other_value); }
inline boolean operator!=(const GSM48__bcap__user__rate& other_value) const { return !(*this == other_value); }
boolean operator<(enum_type other_value) const;
boolean operator<(const GSM48__bcap__user__rate& other_value) const;
boolean operator>(enum_type other_value) const;
boolean operator>(const GSM48__bcap__user__rate& other_value) const;
inline boolean operator<=(enum_type other_value) const { return !(*this > other_value); }
inline boolean operator<=(const GSM48__bcap__user__rate& other_value) const { return !(*this > other_value); }
inline boolean operator>=(enum_type other_value) const { return !(*this < other_value); }
inline boolean operator>=(const GSM48__bcap__user__rate& other_value) const { return !(*this < other_value); }

static const char *enum_to_str(enum_type enum_par);
static enum_type str_to_enum(const char *str_par);
static boolean is_valid_enum(int int_par);

static int enum2int(enum_type enum_par);
static int enum2int(const GSM48__bcap__user__rate& enum_par);
int as_int() const { return enum2int(enum_value); }
void from_int(int p_val) { *this = p_val; }
void int2enum(int int_val);
operator enum_type() const;
inline boolean is_bound() const { return enum_value != UNBOUND_VALUE; }
inline boolean is_value() const { return enum_value != UNBOUND_VALUE; }
inline void clean_up(){ enum_value = UNBOUND_VALUE; }
inline boolean is_present() const { return is_bound(); }
void log() const;
void set_param(Module_Param& param);
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class GSM48__bcap__user__rate_template : public Base_Template {
union {
GSM48__bcap__user__rate::enum_type single_value;
struct {
unsigned int n_values;
GSM48__bcap__user__rate_template *list_value;
} value_list;
};

void copy_template(const GSM48__bcap__user__rate_template& other_value);

public:
GSM48__bcap__user__rate_template();
GSM48__bcap__user__rate_template(template_sel other_value);
GSM48__bcap__user__rate_template(int other_value);
GSM48__bcap__user__rate_template(GSM48__bcap__user__rate::enum_type other_value);
GSM48__bcap__user__rate_template(const GSM48__bcap__user__rate& other_value);
GSM48__bcap__user__rate_template(const OPTIONAL<GSM48__bcap__user__rate>& other_value);
GSM48__bcap__user__rate_template(const GSM48__bcap__user__rate_template& other_value);
~GSM48__bcap__user__rate_template();

boolean is_bound() const;
boolean is_value() const;
void clean_up();
GSM48__bcap__user__rate_template& operator=(template_sel other_value);
GSM48__bcap__user__rate_template& operator=(int other_value);
GSM48__bcap__user__rate_template& operator=(GSM48__bcap__user__rate::enum_type other_value);
GSM48__bcap__user__rate_template& operator=(const GSM48__bcap__user__rate& other_value);
GSM48__bcap__user__rate_template& operator=(const OPTIONAL<GSM48__bcap__user__rate>& other_value);
GSM48__bcap__user__rate_template& operator=(const GSM48__bcap__user__rate_template& other_value);

boolean match(GSM48__bcap__user__rate::enum_type other_value, boolean legacy = FALSE) const;
boolean match(const GSM48__bcap__user__rate& other_value, boolean legacy = FALSE) const;
GSM48__bcap__user__rate::enum_type valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
GSM48__bcap__user__rate_template& list_item(unsigned int list_index);
void log() const;
void log_match(const GSM48__bcap__user__rate& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
};

class GSM48__bcap__parity : public Base_Type { // enum
friend class GSM48__bcap__parity_template;
public:
enum enum_type { GSM48__BCAP__PAR__ODD = 0, GSM48__BCAP__PAR__EVEN = 2, GSM48__BCAP__PAR__NONE = 3, GSM48__BCAP__PAR__ZERO = 4, GSM48__BCAP__PAR__ONE = 5, UNKNOWN_VALUE = 1, UNBOUND_VALUE = 6 };
private:
enum_type enum_value;

public:
GSM48__bcap__parity();
GSM48__bcap__parity(int other_value);
GSM48__bcap__parity(enum_type other_value);
GSM48__bcap__parity(const GSM48__bcap__parity& other_value);

GSM48__bcap__parity& operator=(int other_value);
GSM48__bcap__parity& operator=(enum_type other_value);
GSM48__bcap__parity& operator=(const GSM48__bcap__parity& other_value);

boolean operator==(enum_type other_value) const;
boolean operator==(const GSM48__bcap__parity& other_value) const;
inline boolean operator!=(enum_type other_value) const { return !(*this == other_value); }
inline boolean operator!=(const GSM48__bcap__parity& other_value) const { return !(*this == other_value); }
boolean operator<(enum_type other_value) const;
boolean operator<(const GSM48__bcap__parity& other_value) const;
boolean operator>(enum_type other_value) const;
boolean operator>(const GSM48__bcap__parity& other_value) const;
inline boolean operator<=(enum_type other_value) const { return !(*this > other_value); }
inline boolean operator<=(const GSM48__bcap__parity& other_value) const { return !(*this > other_value); }
inline boolean operator>=(enum_type other_value) const { return !(*this < other_value); }
inline boolean operator>=(const GSM48__bcap__parity& other_value) const { return !(*this < other_value); }

static const char *enum_to_str(enum_type enum_par);
static enum_type str_to_enum(const char *str_par);
static boolean is_valid_enum(int int_par);

static int enum2int(enum_type enum_par);
static int enum2int(const GSM48__bcap__parity& enum_par);
int as_int() const { return enum2int(enum_value); }
void from_int(int p_val) { *this = p_val; }
void int2enum(int int_val);
operator enum_type() const;
inline boolean is_bound() const { return enum_value != UNBOUND_VALUE; }
inline boolean is_value() const { return enum_value != UNBOUND_VALUE; }
inline void clean_up(){ enum_value = UNBOUND_VALUE; }
inline boolean is_present() const { return is_bound(); }
void log() const;
void set_param(Module_Param& param);
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class GSM48__bcap__parity_template : public Base_Template {
union {
GSM48__bcap__parity::enum_type single_value;
struct {
unsigned int n_values;
GSM48__bcap__parity_template *list_value;
} value_list;
};

void copy_template(const GSM48__bcap__parity_template& other_value);

public:
GSM48__bcap__parity_template();
GSM48__bcap__parity_template(template_sel other_value);
GSM48__bcap__parity_template(int other_value);
GSM48__bcap__parity_template(GSM48__bcap__parity::enum_type other_value);
GSM48__bcap__parity_template(const GSM48__bcap__parity& other_value);
GSM48__bcap__parity_template(const OPTIONAL<GSM48__bcap__parity>& other_value);
GSM48__bcap__parity_template(const GSM48__bcap__parity_template& other_value);
~GSM48__bcap__parity_template();

boolean is_bound() const;
boolean is_value() const;
void clean_up();
GSM48__bcap__parity_template& operator=(template_sel other_value);
GSM48__bcap__parity_template& operator=(int other_value);
GSM48__bcap__parity_template& operator=(GSM48__bcap__parity::enum_type other_value);
GSM48__bcap__parity_template& operator=(const GSM48__bcap__parity& other_value);
GSM48__bcap__parity_template& operator=(const OPTIONAL<GSM48__bcap__parity>& other_value);
GSM48__bcap__parity_template& operator=(const GSM48__bcap__parity_template& other_value);

boolean match(GSM48__bcap__parity::enum_type other_value, boolean legacy = FALSE) const;
boolean match(const GSM48__bcap__parity& other_value, boolean legacy = FALSE) const;
GSM48__bcap__parity::enum_type valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
GSM48__bcap__parity_template& list_item(unsigned int list_index);
void log() const;
void log_match(const GSM48__bcap__parity& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
};

class GSM48__bcap__interm__rate : public Base_Type { // enum
friend class GSM48__bcap__interm__rate_template;
public:
enum enum_type { GSM48__BCAP__IR__NONE = 0, GSM48__BCAP__IR__8k = 2, GSM48__BCAP__IR__16k = 3, UNKNOWN_VALUE = 1, UNBOUND_VALUE = 4 };
private:
enum_type enum_value;

public:
GSM48__bcap__interm__rate();
GSM48__bcap__interm__rate(int other_value);
GSM48__bcap__interm__rate(enum_type other_value);
GSM48__bcap__interm__rate(const GSM48__bcap__interm__rate& other_value);

GSM48__bcap__interm__rate& operator=(int other_value);
GSM48__bcap__interm__rate& operator=(enum_type other_value);
GSM48__bcap__interm__rate& operator=(const GSM48__bcap__interm__rate& other_value);

boolean operator==(enum_type other_value) const;
boolean operator==(const GSM48__bcap__interm__rate& other_value) const;
inline boolean operator!=(enum_type other_value) const { return !(*this == other_value); }
inline boolean operator!=(const GSM48__bcap__interm__rate& other_value) const { return !(*this == other_value); }
boolean operator<(enum_type other_value) const;
boolean operator<(const GSM48__bcap__interm__rate& other_value) const;
boolean operator>(enum_type other_value) const;
boolean operator>(const GSM48__bcap__interm__rate& other_value) const;
inline boolean operator<=(enum_type other_value) const { return !(*this > other_value); }
inline boolean operator<=(const GSM48__bcap__interm__rate& other_value) const { return !(*this > other_value); }
inline boolean operator>=(enum_type other_value) const { return !(*this < other_value); }
inline boolean operator>=(const GSM48__bcap__interm__rate& other_value) const { return !(*this < other_value); }

static const char *enum_to_str(enum_type enum_par);
static enum_type str_to_enum(const char *str_par);
static boolean is_valid_enum(int int_par);

static int enum2int(enum_type enum_par);
static int enum2int(const GSM48__bcap__interm__rate& enum_par);
int as_int() const { return enum2int(enum_value); }
void from_int(int p_val) { *this = p_val; }
void int2enum(int int_val);
operator enum_type() const;
inline boolean is_bound() const { return enum_value != UNBOUND_VALUE; }
inline boolean is_value() const { return enum_value != UNBOUND_VALUE; }
inline void clean_up(){ enum_value = UNBOUND_VALUE; }
inline boolean is_present() const { return is_bound(); }
void log() const;
void set_param(Module_Param& param);
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class GSM48__bcap__interm__rate_template : public Base_Template {
union {
GSM48__bcap__interm__rate::enum_type single_value;
struct {
unsigned int n_values;
GSM48__bcap__interm__rate_template *list_value;
} value_list;
};

void copy_template(const GSM48__bcap__interm__rate_template& other_value);

public:
GSM48__bcap__interm__rate_template();
GSM48__bcap__interm__rate_template(template_sel other_value);
GSM48__bcap__interm__rate_template(int other_value);
GSM48__bcap__interm__rate_template(GSM48__bcap__interm__rate::enum_type other_value);
GSM48__bcap__interm__rate_template(const GSM48__bcap__interm__rate& other_value);
GSM48__bcap__interm__rate_template(const OPTIONAL<GSM48__bcap__interm__rate>& other_value);
GSM48__bcap__interm__rate_template(const GSM48__bcap__interm__rate_template& other_value);
~GSM48__bcap__interm__rate_template();

boolean is_bound() const;
boolean is_value() const;
void clean_up();
GSM48__bcap__interm__rate_template& operator=(template_sel other_value);
GSM48__bcap__interm__rate_template& operator=(int other_value);
GSM48__bcap__interm__rate_template& operator=(GSM48__bcap__interm__rate::enum_type other_value);
GSM48__bcap__interm__rate_template& operator=(const GSM48__bcap__interm__rate& other_value);
GSM48__bcap__interm__rate_template& operator=(const OPTIONAL<GSM48__bcap__interm__rate>& other_value);
GSM48__bcap__interm__rate_template& operator=(const GSM48__bcap__interm__rate_template& other_value);

boolean match(GSM48__bcap__interm__rate::enum_type other_value, boolean legacy = FALSE) const;
boolean match(const GSM48__bcap__interm__rate& other_value, boolean legacy = FALSE) const;
GSM48__bcap__interm__rate::enum_type valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
GSM48__bcap__interm__rate_template& list_item(unsigned int list_index);
void log() const;
void log_match(const GSM48__bcap__interm__rate& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
};

class GSM48__bcap__transp : public Base_Type { // enum
friend class GSM48__bcap__transp_template;
public:
enum enum_type { GSM48__BCAP__TR__TRANSP = 0, GSM48__BCAP__TR__RLP = 1, GSM48__BCAP__TR__TR__PREF = 2, GSM48__BCAP__TR__RLP__PREF = 3, UNKNOWN_VALUE = 4, UNBOUND_VALUE = 5 };
private:
enum_type enum_value;

public:
GSM48__bcap__transp();
GSM48__bcap__transp(int other_value);
GSM48__bcap__transp(enum_type other_value);
GSM48__bcap__transp(const GSM48__bcap__transp& other_value);

GSM48__bcap__transp& operator=(int other_value);
GSM48__bcap__transp& operator=(enum_type other_value);
GSM48__bcap__transp& operator=(const GSM48__bcap__transp& other_value);

boolean operator==(enum_type other_value) const;
boolean operator==(const GSM48__bcap__transp& other_value) const;
inline boolean operator!=(enum_type other_value) const { return !(*this == other_value); }
inline boolean operator!=(const GSM48__bcap__transp& other_value) const { return !(*this == other_value); }
boolean operator<(enum_type other_value) const;
boolean operator<(const GSM48__bcap__transp& other_value) const;
boolean operator>(enum_type other_value) const;
boolean operator>(const GSM48__bcap__transp& other_value) const;
inline boolean operator<=(enum_type other_value) const { return !(*this > other_value); }
inline boolean operator<=(const GSM48__bcap__transp& other_value) const { return !(*this > other_value); }
inline boolean operator>=(enum_type other_value) const { return !(*this < other_value); }
inline boolean operator>=(const GSM48__bcap__transp& other_value) const { return !(*this < other_value); }

static const char *enum_to_str(enum_type enum_par);
static enum_type str_to_enum(const char *str_par);
static boolean is_valid_enum(int int_par);

static int enum2int(enum_type enum_par);
static int enum2int(const GSM48__bcap__transp& enum_par);
int as_int() const { return enum2int(enum_value); }
void from_int(int p_val) { *this = p_val; }
void int2enum(int int_val);
operator enum_type() const;
inline boolean is_bound() const { return enum_value != UNBOUND_VALUE; }
inline boolean is_value() const { return enum_value != UNBOUND_VALUE; }
inline void clean_up(){ enum_value = UNBOUND_VALUE; }
inline boolean is_present() const { return is_bound(); }
void log() const;
void set_param(Module_Param& param);
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class GSM48__bcap__transp_template : public Base_Template {
union {
GSM48__bcap__transp::enum_type single_value;
struct {
unsigned int n_values;
GSM48__bcap__transp_template *list_value;
} value_list;
};

void copy_template(const GSM48__bcap__transp_template& other_value);

public:
GSM48__bcap__transp_template();
GSM48__bcap__transp_template(template_sel other_value);
GSM48__bcap__transp_template(int other_value);
GSM48__bcap__transp_template(GSM48__bcap__transp::enum_type other_value);
GSM48__bcap__transp_template(const GSM48__bcap__transp& other_value);
GSM48__bcap__transp_template(const OPTIONAL<GSM48__bcap__transp>& other_value);
GSM48__bcap__transp_template(const GSM48__bcap__transp_template& other_value);
~GSM48__bcap__transp_template();

boolean is_bound() const;
boolean is_value() const;
void clean_up();
GSM48__bcap__transp_template& operator=(template_sel other_value);
GSM48__bcap__transp_template& operator=(int other_value);
GSM48__bcap__transp_template& operator=(GSM48__bcap__transp::enum_type other_value);
GSM48__bcap__transp_template& operator=(const GSM48__bcap__transp& other_value);
GSM48__bcap__transp_template& operator=(const OPTIONAL<GSM48__bcap__transp>& other_value);
GSM48__bcap__transp_template& operator=(const GSM48__bcap__transp_template& other_value);

boolean match(GSM48__bcap__transp::enum_type other_value, boolean legacy = FALSE) const;
boolean match(const GSM48__bcap__transp& other_value, boolean legacy = FALSE) const;
GSM48__bcap__transp::enum_type valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
GSM48__bcap__transp_template& list_item(unsigned int list_index);
void log() const;
void log_match(const GSM48__bcap__transp& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
};

class GSM48__bcap__modem__type : public Base_Type { // enum
friend class GSM48__bcap__modem__type_template;
public:
enum enum_type { GSM48__BCAP__MT__NONE = 0, GSM48__BCAP__MT__V21 = 1, GSM48__BCAP__MT__V22 = 2, GSM48__BCAP__MT__V22bis = 3, GSM48__BCAP__MT__V23 = 4, GSM48__BCAP__MT__V26ter = 5, GSM48__BCAP__MT__V32 = 6, GSM48__BCAP__MT__UNDEF = 7, GSM48__BCAP__MT__AUTO__1 = 8, UNKNOWN_VALUE = 9, UNBOUND_VALUE = 10 };
private:
enum_type enum_value;

public:
GSM48__bcap__modem__type();
GSM48__bcap__modem__type(int other_value);
GSM48__bcap__modem__type(enum_type other_value);
GSM48__bcap__modem__type(const GSM48__bcap__modem__type& other_value);

GSM48__bcap__modem__type& operator=(int other_value);
GSM48__bcap__modem__type& operator=(enum_type other_value);
GSM48__bcap__modem__type& operator=(const GSM48__bcap__modem__type& other_value);

boolean operator==(enum_type other_value) const;
boolean operator==(const GSM48__bcap__modem__type& other_value) const;
inline boolean operator!=(enum_type other_value) const { return !(*this == other_value); }
inline boolean operator!=(const GSM48__bcap__modem__type& other_value) const { return !(*this == other_value); }
boolean operator<(enum_type other_value) const;
boolean operator<(const GSM48__bcap__modem__type& other_value) const;
boolean operator>(enum_type other_value) const;
boolean operator>(const GSM48__bcap__modem__type& other_value) const;
inline boolean operator<=(enum_type other_value) const { return !(*this > other_value); }
inline boolean operator<=(const GSM48__bcap__modem__type& other_value) const { return !(*this > other_value); }
inline boolean operator>=(enum_type other_value) const { return !(*this < other_value); }
inline boolean operator>=(const GSM48__bcap__modem__type& other_value) const { return !(*this < other_value); }

static const char *enum_to_str(enum_type enum_par);
static enum_type str_to_enum(const char *str_par);
static boolean is_valid_enum(int int_par);

static int enum2int(enum_type enum_par);
static int enum2int(const GSM48__bcap__modem__type& enum_par);
int as_int() const { return enum2int(enum_value); }
void from_int(int p_val) { *this = p_val; }
void int2enum(int int_val);
operator enum_type() const;
inline boolean is_bound() const { return enum_value != UNBOUND_VALUE; }
inline boolean is_value() const { return enum_value != UNBOUND_VALUE; }
inline void clean_up(){ enum_value = UNBOUND_VALUE; }
inline boolean is_present() const { return is_bound(); }
void log() const;
void set_param(Module_Param& param);
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class GSM48__bcap__modem__type_template : public Base_Template {
union {
GSM48__bcap__modem__type::enum_type single_value;
struct {
unsigned int n_values;
GSM48__bcap__modem__type_template *list_value;
} value_list;
};

void copy_template(const GSM48__bcap__modem__type_template& other_value);

public:
GSM48__bcap__modem__type_template();
GSM48__bcap__modem__type_template(template_sel other_value);
GSM48__bcap__modem__type_template(int other_value);
GSM48__bcap__modem__type_template(GSM48__bcap__modem__type::enum_type other_value);
GSM48__bcap__modem__type_template(const GSM48__bcap__modem__type& other_value);
GSM48__bcap__modem__type_template(const OPTIONAL<GSM48__bcap__modem__type>& other_value);
GSM48__bcap__modem__type_template(const GSM48__bcap__modem__type_template& other_value);
~GSM48__bcap__modem__type_template();

boolean is_bound() const;
boolean is_value() const;
void clean_up();
GSM48__bcap__modem__type_template& operator=(template_sel other_value);
GSM48__bcap__modem__type_template& operator=(int other_value);
GSM48__bcap__modem__type_template& operator=(GSM48__bcap__modem__type::enum_type other_value);
GSM48__bcap__modem__type_template& operator=(const GSM48__bcap__modem__type& other_value);
GSM48__bcap__modem__type_template& operator=(const OPTIONAL<GSM48__bcap__modem__type>& other_value);
GSM48__bcap__modem__type_template& operator=(const GSM48__bcap__modem__type_template& other_value);

boolean match(GSM48__bcap__modem__type::enum_type other_value, boolean legacy = FALSE) const;
boolean match(const GSM48__bcap__modem__type& other_value, boolean legacy = FALSE) const;
GSM48__bcap__modem__type::enum_type valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
GSM48__bcap__modem__type_template& list_item(unsigned int list_index);
void log() const;
void log_match(const GSM48__bcap__modem__type& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
};

class MNCC__MsgType : public Base_Type { // enum
friend class MNCC__MsgType_template;
public:
enum enum_type { MNCC__SETUP__REQ = 257, MNCC__SETUP__IND = 258, MNCC__SETUP__RSP = 259, MNCC__SETUP__CNF = 260, MNCC__SETUP__COMPL__REQ = 261, MNCC__SETUP__COMPL__IND = 262, MNCC__CALL__CONF__IND = 263, MNCC__CALL__PROC__REQ = 264, MNCC__PROGRESS__REQ = 265, MNCC__ALERT__REQ = 266, MNCC__ALERT__IND = 267, MNCC__NOTIFY__REQ = 268, MNCC__NOTIFY__IND = 269, MNCC__DISC__REQ = 270, MNCC__DISC__IND = 271, MNCC__REL__REQ = 272, MNCC__REL__IND = 273, MNCC__REL__CNF = 274, MNCC__FACILITY__REQ = 275, MNCC__FACILITY__IND = 276, MNCC__START__DTMF__IND = 277, MNCC__START__DTMF__RSP = 278, MNCC__START__DTMF__REJ = 279, MNCC__STOP__DTMF__IND = 280, MNCC__STOP__DTMF__RSP = 281, MNCC__MODIFY__REQ = 282, MNCC__MODIFY__IND = 283, MNCC__MODIFY__RSP = 284, MNCC__MODIFY__CNF = 285, MNCC__MODIFY__REJ = 286, MNCC__HOLD__IND = 287, MNCC__HOLD__CNF = 288, MNCC__HOLD__REJ = 289, MNCC__RETRIEVE__IND = 290, MNCC__RETRIEVE__CNF = 291, MNCC__RETRIEVE__REJ = 292, MNCC__USERINFO__REQ = 293, MNCC__USERINFO__IND = 294, MNCC__REJ__REQ = 295, MNCC__REJ__IND = 296, MNCC__BRIDGE = 512, MNCC__FRAME__RECV = 513, MNCC__FRAME__DROP = 514, MNCC__LCHAN__MODIFY = 515, MNCC__RTP__CREATE = 516, MNCC__RTP__CONNECT = 517, MNCC__RTP__FREE = 518, GSM__TCHF__FRAME = 768, GSM__TCHF__FRAME__EFR = 769, GSM__TCHH__FRAME = 770, GSM__TCH__FRAME__AMR = 771, GSM__BAD__FRAME = 1023, MNCC__SOCKET__HELLO = 1024, UNKNOWN_VALUE = 0, UNBOUND_VALUE = 1 };
private:
enum_type enum_value;

public:
MNCC__MsgType();
MNCC__MsgType(int other_value);
MNCC__MsgType(enum_type other_value);
MNCC__MsgType(const MNCC__MsgType& other_value);

MNCC__MsgType& operator=(int other_value);
MNCC__MsgType& operator=(enum_type other_value);
MNCC__MsgType& operator=(const MNCC__MsgType& other_value);

boolean operator==(enum_type other_value) const;
boolean operator==(const MNCC__MsgType& other_value) const;
inline boolean operator!=(enum_type other_value) const { return !(*this == other_value); }
inline boolean operator!=(const MNCC__MsgType& other_value) const { return !(*this == other_value); }
boolean operator<(enum_type other_value) const;
boolean operator<(const MNCC__MsgType& other_value) const;
boolean operator>(enum_type other_value) const;
boolean operator>(const MNCC__MsgType& other_value) const;
inline boolean operator<=(enum_type other_value) const { return !(*this > other_value); }
inline boolean operator<=(const MNCC__MsgType& other_value) const { return !(*this > other_value); }
inline boolean operator>=(enum_type other_value) const { return !(*this < other_value); }
inline boolean operator>=(const MNCC__MsgType& other_value) const { return !(*this < other_value); }

static const char *enum_to_str(enum_type enum_par);
static enum_type str_to_enum(const char *str_par);
static boolean is_valid_enum(int int_par);

static int enum2int(enum_type enum_par);
static int enum2int(const MNCC__MsgType& enum_par);
int as_int() const { return enum2int(enum_value); }
void from_int(int p_val) { *this = p_val; }
void int2enum(int int_val);
operator enum_type() const;
inline boolean is_bound() const { return enum_value != UNBOUND_VALUE; }
inline boolean is_value() const { return enum_value != UNBOUND_VALUE; }
inline void clean_up(){ enum_value = UNBOUND_VALUE; }
inline boolean is_present() const { return is_bound(); }
void log() const;
void set_param(Module_Param& param);
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class MNCC__MsgType_template : public Base_Template {
union {
MNCC__MsgType::enum_type single_value;
struct {
unsigned int n_values;
MNCC__MsgType_template *list_value;
} value_list;
};

void copy_template(const MNCC__MsgType_template& other_value);

public:
MNCC__MsgType_template();
MNCC__MsgType_template(template_sel other_value);
MNCC__MsgType_template(int other_value);
MNCC__MsgType_template(MNCC__MsgType::enum_type other_value);
MNCC__MsgType_template(const MNCC__MsgType& other_value);
MNCC__MsgType_template(const OPTIONAL<MNCC__MsgType>& other_value);
MNCC__MsgType_template(const MNCC__MsgType_template& other_value);
~MNCC__MsgType_template();

boolean is_bound() const;
boolean is_value() const;
void clean_up();
MNCC__MsgType_template& operator=(template_sel other_value);
MNCC__MsgType_template& operator=(int other_value);
MNCC__MsgType_template& operator=(MNCC__MsgType::enum_type other_value);
MNCC__MsgType_template& operator=(const MNCC__MsgType& other_value);
MNCC__MsgType_template& operator=(const OPTIONAL<MNCC__MsgType>& other_value);
MNCC__MsgType_template& operator=(const MNCC__MsgType_template& other_value);

boolean match(MNCC__MsgType::enum_type other_value, boolean legacy = FALSE) const;
boolean match(const MNCC__MsgType& other_value, boolean legacy = FALSE) const;
MNCC__MsgType::enum_type valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
MNCC__MsgType_template& list_item(unsigned int list_index);
void log() const;
void log_match(const MNCC__MsgType& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
};

class MNCC__bearer__cap__data : public Base_Type {
  GSM48__bcap__ra field_rate__adaptation;
  GSM48__bcap__sig__access field_sig__access;
  INTEGER field_async;
  INTEGER field_nr__stop__bits;
  INTEGER field_nr__data__bits;
  GSM48__bcap__user__rate field_user__rate;
  GSM48__bcap__parity field_parity;
  GSM48__bcap__interm__rate field_interm__rate;
  GSM48__bcap__transp field_transp;
  GSM48__bcap__modem__type field_modem__type;
public:
  MNCC__bearer__cap__data();
  MNCC__bearer__cap__data(const GSM48__bcap__ra& par_rate__adaptation,
    const GSM48__bcap__sig__access& par_sig__access,
    const INTEGER& par_async,
    const INTEGER& par_nr__stop__bits,
    const INTEGER& par_nr__data__bits,
    const GSM48__bcap__user__rate& par_user__rate,
    const GSM48__bcap__parity& par_parity,
    const GSM48__bcap__interm__rate& par_interm__rate,
    const GSM48__bcap__transp& par_transp,
    const GSM48__bcap__modem__type& par_modem__type);
  MNCC__bearer__cap__data(const MNCC__bearer__cap__data& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  MNCC__bearer__cap__data& operator=(const MNCC__bearer__cap__data& other_value);
  boolean operator==(const MNCC__bearer__cap__data& other_value) const;
  inline boolean operator!=(const MNCC__bearer__cap__data& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

inline boolean is_present() const { return is_bound(); }
  boolean is_value() const;

  inline GSM48__bcap__ra& rate__adaptation()
    {return field_rate__adaptation;}
  inline const GSM48__bcap__ra& rate__adaptation() const
    {return field_rate__adaptation;}
  inline GSM48__bcap__sig__access& sig__access()
    {return field_sig__access;}
  inline const GSM48__bcap__sig__access& sig__access() const
    {return field_sig__access;}
  inline INTEGER& async()
    {return field_async;}
  inline const INTEGER& async() const
    {return field_async;}
  inline INTEGER& nr__stop__bits()
    {return field_nr__stop__bits;}
  inline const INTEGER& nr__stop__bits() const
    {return field_nr__stop__bits;}
  inline INTEGER& nr__data__bits()
    {return field_nr__data__bits;}
  inline const INTEGER& nr__data__bits() const
    {return field_nr__data__bits;}
  inline GSM48__bcap__user__rate& user__rate()
    {return field_user__rate;}
  inline const GSM48__bcap__user__rate& user__rate() const
    {return field_user__rate;}
  inline GSM48__bcap__parity& parity()
    {return field_parity;}
  inline const GSM48__bcap__parity& parity() const
    {return field_parity;}
  inline GSM48__bcap__interm__rate& interm__rate()
    {return field_interm__rate;}
  inline const GSM48__bcap__interm__rate& interm__rate() const
    {return field_interm__rate;}
  inline GSM48__bcap__transp& transp()
    {return field_transp;}
  inline const GSM48__bcap__transp& transp() const
    {return field_transp;}
  inline GSM48__bcap__modem__type& modem__type()
    {return field_modem__type;}
  inline const GSM48__bcap__modem__type& modem__type() const
    {return field_modem__type;}
  inline int size_of() const
    {return 10;}
  void log() const;
  void set_param(Module_Param& param);
  void set_implicit_omit();
  void encode_text(Text_Buf& text_buf) const;
  void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class MNCC__bearer__cap__data_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
MNCC__bearer__cap__data_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const MNCC__bearer__cap__data& other_value);
void copy_template(const MNCC__bearer__cap__data_template& other_value);

public:
MNCC__bearer__cap__data_template();
MNCC__bearer__cap__data_template(template_sel other_value);
MNCC__bearer__cap__data_template(const MNCC__bearer__cap__data& other_value);
MNCC__bearer__cap__data_template(const OPTIONAL<MNCC__bearer__cap__data>& other_value);
MNCC__bearer__cap__data_template(const MNCC__bearer__cap__data_template& other_value);
~MNCC__bearer__cap__data_template();
MNCC__bearer__cap__data_template& operator=(template_sel other_value);
MNCC__bearer__cap__data_template& operator=(const MNCC__bearer__cap__data& other_value);
MNCC__bearer__cap__data_template& operator=(const OPTIONAL<MNCC__bearer__cap__data>& other_value);
MNCC__bearer__cap__data_template& operator=(const MNCC__bearer__cap__data_template& other_value);
boolean match(const MNCC__bearer__cap__data& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
MNCC__bearer__cap__data valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
MNCC__bearer__cap__data_template& list_item(unsigned int list_index) const;
GSM48__bcap__ra_template& rate__adaptation();
const GSM48__bcap__ra_template& rate__adaptation() const;
GSM48__bcap__sig__access_template& sig__access();
const GSM48__bcap__sig__access_template& sig__access() const;
INTEGER_template& async();
const INTEGER_template& async() const;
INTEGER_template& nr__stop__bits();
const INTEGER_template& nr__stop__bits() const;
INTEGER_template& nr__data__bits();
const INTEGER_template& nr__data__bits() const;
GSM48__bcap__user__rate_template& user__rate();
const GSM48__bcap__user__rate_template& user__rate() const;
GSM48__bcap__parity_template& parity();
const GSM48__bcap__parity_template& parity() const;
GSM48__bcap__interm__rate_template& interm__rate();
const GSM48__bcap__interm__rate_template& interm__rate() const;
GSM48__bcap__transp_template& transp();
const GSM48__bcap__transp_template& transp() const;
GSM48__bcap__modem__type_template& modem__type();
const GSM48__bcap__modem__type_template& modem__type() const;
int size_of() const;
void log() const;
void log_match(const MNCC__bearer__cap__data& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
};

class MNCC__bearer__cap : public Base_Type {
  INTEGER field_transfer;
  INTEGER field_mode;
  INTEGER field_coding;
  INTEGER field_radio;
  INTEGER field_speech__ctm;
  MNCC__speech__vers field_speech__ver;
  OPTIONAL<MNCC__bearer__cap__data> field_data;
public:
  MNCC__bearer__cap();
  MNCC__bearer__cap(const INTEGER& par_transfer,
    const INTEGER& par_mode,
    const INTEGER& par_coding,
    const INTEGER& par_radio,
    const INTEGER& par_speech__ctm,
    const MNCC__speech__vers& par_speech__ver,
    const OPTIONAL<MNCC__bearer__cap__data>& par_data);
  MNCC__bearer__cap(const MNCC__bearer__cap& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  MNCC__bearer__cap& operator=(const MNCC__bearer__cap& other_value);
  boolean operator==(const MNCC__bearer__cap& other_value) const;
  inline boolean operator!=(const MNCC__bearer__cap& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

inline boolean is_present() const { return is_bound(); }
  boolean is_value() const;

  inline INTEGER& transfer()
    {return field_transfer;}
  inline const INTEGER& transfer() const
    {return field_transfer;}
  inline INTEGER& mode()
    {return field_mode;}
  inline const INTEGER& mode() const
    {return field_mode;}
  inline INTEGER& coding()
    {return field_coding;}
  inline const INTEGER& coding() const
    {return field_coding;}
  inline INTEGER& radio()
    {return field_radio;}
  inline const INTEGER& radio() const
    {return field_radio;}
  inline INTEGER& speech__ctm()
    {return field_speech__ctm;}
  inline const INTEGER& speech__ctm() const
    {return field_speech__ctm;}
  inline MNCC__speech__vers& speech__ver()
    {return field_speech__ver;}
  inline const MNCC__speech__vers& speech__ver() const
    {return field_speech__ver;}
  inline OPTIONAL<MNCC__bearer__cap__data>& data()
    {return field_data;}
  inline const OPTIONAL<MNCC__bearer__cap__data>& data() const
    {return field_data;}
  int size_of() const;
  void log() const;
  void set_param(Module_Param& param);
  void set_implicit_omit();
  void encode_text(Text_Buf& text_buf) const;
  void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class MNCC__bearer__cap_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
MNCC__bearer__cap_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const MNCC__bearer__cap& other_value);
void copy_template(const MNCC__bearer__cap_template& other_value);

public:
MNCC__bearer__cap_template();
MNCC__bearer__cap_template(template_sel other_value);
MNCC__bearer__cap_template(const MNCC__bearer__cap& other_value);
MNCC__bearer__cap_template(const OPTIONAL<MNCC__bearer__cap>& other_value);
MNCC__bearer__cap_template(const MNCC__bearer__cap_template& other_value);
~MNCC__bearer__cap_template();
MNCC__bearer__cap_template& operator=(template_sel other_value);
MNCC__bearer__cap_template& operator=(const MNCC__bearer__cap& other_value);
MNCC__bearer__cap_template& operator=(const OPTIONAL<MNCC__bearer__cap>& other_value);
MNCC__bearer__cap_template& operator=(const MNCC__bearer__cap_template& other_value);
boolean match(const MNCC__bearer__cap& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
MNCC__bearer__cap valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
MNCC__bearer__cap_template& list_item(unsigned int list_index) const;
INTEGER_template& transfer();
const INTEGER_template& transfer() const;
INTEGER_template& mode();
const INTEGER_template& mode() const;
INTEGER_template& coding();
const INTEGER_template& coding() const;
INTEGER_template& radio();
const INTEGER_template& radio() const;
INTEGER_template& speech__ctm();
const INTEGER_template& speech__ctm() const;
MNCC__speech__vers_template& speech__ver();
const MNCC__speech__vers_template& speech__ver() const;
MNCC__bearer__cap__data_template& data();
const MNCC__bearer__cap__data_template& data() const;
int size_of() const;
void log() const;
void log_match(const MNCC__bearer__cap& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
};

class GSM48__type__of__number : public Base_Type { // enum
friend class GSM48__type__of__number_template;
public:
enum enum_type { GSM48__TON__UNKNOWN = 0, GSM48__TON__INTERNATIONAL = 1, GSM48__TON__NATIONAL = 2, GSM48__TON__NETWORK__SPECIFIC = 3, GSM48__TON__SHORT__CODE = 4, UNKNOWN_VALUE = 5, UNBOUND_VALUE = 6 };
private:
enum_type enum_value;

public:
GSM48__type__of__number();
GSM48__type__of__number(int other_value);
GSM48__type__of__number(enum_type other_value);
GSM48__type__of__number(const GSM48__type__of__number& other_value);

GSM48__type__of__number& operator=(int other_value);
GSM48__type__of__number& operator=(enum_type other_value);
GSM48__type__of__number& operator=(const GSM48__type__of__number& other_value);

boolean operator==(enum_type other_value) const;
boolean operator==(const GSM48__type__of__number& other_value) const;
inline boolean operator!=(enum_type other_value) const { return !(*this == other_value); }
inline boolean operator!=(const GSM48__type__of__number& other_value) const { return !(*this == other_value); }
boolean operator<(enum_type other_value) const;
boolean operator<(const GSM48__type__of__number& other_value) const;
boolean operator>(enum_type other_value) const;
boolean operator>(const GSM48__type__of__number& other_value) const;
inline boolean operator<=(enum_type other_value) const { return !(*this > other_value); }
inline boolean operator<=(const GSM48__type__of__number& other_value) const { return !(*this > other_value); }
inline boolean operator>=(enum_type other_value) const { return !(*this < other_value); }
inline boolean operator>=(const GSM48__type__of__number& other_value) const { return !(*this < other_value); }

static const char *enum_to_str(enum_type enum_par);
static enum_type str_to_enum(const char *str_par);
static boolean is_valid_enum(int int_par);

static int enum2int(enum_type enum_par);
static int enum2int(const GSM48__type__of__number& enum_par);
int as_int() const { return enum2int(enum_value); }
void from_int(int p_val) { *this = p_val; }
void int2enum(int int_val);
operator enum_type() const;
inline boolean is_bound() const { return enum_value != UNBOUND_VALUE; }
inline boolean is_value() const { return enum_value != UNBOUND_VALUE; }
inline void clean_up(){ enum_value = UNBOUND_VALUE; }
inline boolean is_present() const { return is_bound(); }
void log() const;
void set_param(Module_Param& param);
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class GSM48__type__of__number_template : public Base_Template {
union {
GSM48__type__of__number::enum_type single_value;
struct {
unsigned int n_values;
GSM48__type__of__number_template *list_value;
} value_list;
};

void copy_template(const GSM48__type__of__number_template& other_value);

public:
GSM48__type__of__number_template();
GSM48__type__of__number_template(template_sel other_value);
GSM48__type__of__number_template(int other_value);
GSM48__type__of__number_template(GSM48__type__of__number::enum_type other_value);
GSM48__type__of__number_template(const GSM48__type__of__number& other_value);
GSM48__type__of__number_template(const OPTIONAL<GSM48__type__of__number>& other_value);
GSM48__type__of__number_template(const GSM48__type__of__number_template& other_value);
~GSM48__type__of__number_template();

boolean is_bound() const;
boolean is_value() const;
void clean_up();
GSM48__type__of__number_template& operator=(template_sel other_value);
GSM48__type__of__number_template& operator=(int other_value);
GSM48__type__of__number_template& operator=(GSM48__type__of__number::enum_type other_value);
GSM48__type__of__number_template& operator=(const GSM48__type__of__number& other_value);
GSM48__type__of__number_template& operator=(const OPTIONAL<GSM48__type__of__number>& other_value);
GSM48__type__of__number_template& operator=(const GSM48__type__of__number_template& other_value);

boolean match(GSM48__type__of__number::enum_type other_value, boolean legacy = FALSE) const;
boolean match(const GSM48__type__of__number& other_value, boolean legacy = FALSE) const;
GSM48__type__of__number::enum_type valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
GSM48__type__of__number_template& list_item(unsigned int list_index);
void log() const;
void log_match(const GSM48__type__of__number& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
};

class GSM48__num__plan__ind : public Base_Type { // enum
friend class GSM48__num__plan__ind_template;
public:
enum enum_type { GSM48__NUMPLAN__UNKNOWN = 0, GSM48__NUMPLAN__E164 = 1, GSM48__NUMPLAN__X121 = 3, GSM48__NUMPLAN__F69 = 4, GSM48__NUMPLAN__NATIONAL = 8, GSM48__NUMPLAN__PRIVATE = 9, GSM48__NUMPLAN__CTS = 11, GSM48__NUMPLAN__RESERVED = 15, UNKNOWN_VALUE = 2, UNBOUND_VALUE = 5 };
private:
enum_type enum_value;

public:
GSM48__num__plan__ind();
GSM48__num__plan__ind(int other_value);
GSM48__num__plan__ind(enum_type other_value);
GSM48__num__plan__ind(const GSM48__num__plan__ind& other_value);

GSM48__num__plan__ind& operator=(int other_value);
GSM48__num__plan__ind& operator=(enum_type other_value);
GSM48__num__plan__ind& operator=(const GSM48__num__plan__ind& other_value);

boolean operator==(enum_type other_value) const;
boolean operator==(const GSM48__num__plan__ind& other_value) const;
inline boolean operator!=(enum_type other_value) const { return !(*this == other_value); }
inline boolean operator!=(const GSM48__num__plan__ind& other_value) const { return !(*this == other_value); }
boolean operator<(enum_type other_value) const;
boolean operator<(const GSM48__num__plan__ind& other_value) const;
boolean operator>(enum_type other_value) const;
boolean operator>(const GSM48__num__plan__ind& other_value) const;
inline boolean operator<=(enum_type other_value) const { return !(*this > other_value); }
inline boolean operator<=(const GSM48__num__plan__ind& other_value) const { return !(*this > other_value); }
inline boolean operator>=(enum_type other_value) const { return !(*this < other_value); }
inline boolean operator>=(const GSM48__num__plan__ind& other_value) const { return !(*this < other_value); }

static const char *enum_to_str(enum_type enum_par);
static enum_type str_to_enum(const char *str_par);
static boolean is_valid_enum(int int_par);

static int enum2int(enum_type enum_par);
static int enum2int(const GSM48__num__plan__ind& enum_par);
int as_int() const { return enum2int(enum_value); }
void from_int(int p_val) { *this = p_val; }
void int2enum(int int_val);
operator enum_type() const;
inline boolean is_bound() const { return enum_value != UNBOUND_VALUE; }
inline boolean is_value() const { return enum_value != UNBOUND_VALUE; }
inline void clean_up(){ enum_value = UNBOUND_VALUE; }
inline boolean is_present() const { return is_bound(); }
void log() const;
void set_param(Module_Param& param);
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class GSM48__num__plan__ind_template : public Base_Template {
union {
GSM48__num__plan__ind::enum_type single_value;
struct {
unsigned int n_values;
GSM48__num__plan__ind_template *list_value;
} value_list;
};

void copy_template(const GSM48__num__plan__ind_template& other_value);

public:
GSM48__num__plan__ind_template();
GSM48__num__plan__ind_template(template_sel other_value);
GSM48__num__plan__ind_template(int other_value);
GSM48__num__plan__ind_template(GSM48__num__plan__ind::enum_type other_value);
GSM48__num__plan__ind_template(const GSM48__num__plan__ind& other_value);
GSM48__num__plan__ind_template(const OPTIONAL<GSM48__num__plan__ind>& other_value);
GSM48__num__plan__ind_template(const GSM48__num__plan__ind_template& other_value);
~GSM48__num__plan__ind_template();

boolean is_bound() const;
boolean is_value() const;
void clean_up();
GSM48__num__plan__ind_template& operator=(template_sel other_value);
GSM48__num__plan__ind_template& operator=(int other_value);
GSM48__num__plan__ind_template& operator=(GSM48__num__plan__ind::enum_type other_value);
GSM48__num__plan__ind_template& operator=(const GSM48__num__plan__ind& other_value);
GSM48__num__plan__ind_template& operator=(const OPTIONAL<GSM48__num__plan__ind>& other_value);
GSM48__num__plan__ind_template& operator=(const GSM48__num__plan__ind_template& other_value);

boolean match(GSM48__num__plan__ind::enum_type other_value, boolean legacy = FALSE) const;
boolean match(const GSM48__num__plan__ind& other_value, boolean legacy = FALSE) const;
GSM48__num__plan__ind::enum_type valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
GSM48__num__plan__ind_template& list_item(unsigned int list_index);
void log() const;
void log_match(const GSM48__num__plan__ind& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
};

class GSM48__present__ind : public Base_Type { // enum
friend class GSM48__present__ind_template;
public:
enum enum_type { GSM48__PRES__IND__ALLOWED = 0, GSM48__PRES__IND__RESTRICTED = 1, GSM48__PRES__IND__NUM__NOT__AVAIL = 2, GSM48__PRES__IND__RESERVED = 3, UNKNOWN_VALUE = 4, UNBOUND_VALUE = 5 };
private:
enum_type enum_value;

public:
GSM48__present__ind();
GSM48__present__ind(int other_value);
GSM48__present__ind(enum_type other_value);
GSM48__present__ind(const GSM48__present__ind& other_value);

GSM48__present__ind& operator=(int other_value);
GSM48__present__ind& operator=(enum_type other_value);
GSM48__present__ind& operator=(const GSM48__present__ind& other_value);

boolean operator==(enum_type other_value) const;
boolean operator==(const GSM48__present__ind& other_value) const;
inline boolean operator!=(enum_type other_value) const { return !(*this == other_value); }
inline boolean operator!=(const GSM48__present__ind& other_value) const { return !(*this == other_value); }
boolean operator<(enum_type other_value) const;
boolean operator<(const GSM48__present__ind& other_value) const;
boolean operator>(enum_type other_value) const;
boolean operator>(const GSM48__present__ind& other_value) const;
inline boolean operator<=(enum_type other_value) const { return !(*this > other_value); }
inline boolean operator<=(const GSM48__present__ind& other_value) const { return !(*this > other_value); }
inline boolean operator>=(enum_type other_value) const { return !(*this < other_value); }
inline boolean operator>=(const GSM48__present__ind& other_value) const { return !(*this < other_value); }

static const char *enum_to_str(enum_type enum_par);
static enum_type str_to_enum(const char *str_par);
static boolean is_valid_enum(int int_par);

static int enum2int(enum_type enum_par);
static int enum2int(const GSM48__present__ind& enum_par);
int as_int() const { return enum2int(enum_value); }
void from_int(int p_val) { *this = p_val; }
void int2enum(int int_val);
operator enum_type() const;
inline boolean is_bound() const { return enum_value != UNBOUND_VALUE; }
inline boolean is_value() const { return enum_value != UNBOUND_VALUE; }
inline void clean_up(){ enum_value = UNBOUND_VALUE; }
inline boolean is_present() const { return is_bound(); }
void log() const;
void set_param(Module_Param& param);
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class GSM48__present__ind_template : public Base_Template {
union {
GSM48__present__ind::enum_type single_value;
struct {
unsigned int n_values;
GSM48__present__ind_template *list_value;
} value_list;
};

void copy_template(const GSM48__present__ind_template& other_value);

public:
GSM48__present__ind_template();
GSM48__present__ind_template(template_sel other_value);
GSM48__present__ind_template(int other_value);
GSM48__present__ind_template(GSM48__present__ind::enum_type other_value);
GSM48__present__ind_template(const GSM48__present__ind& other_value);
GSM48__present__ind_template(const OPTIONAL<GSM48__present__ind>& other_value);
GSM48__present__ind_template(const GSM48__present__ind_template& other_value);
~GSM48__present__ind_template();

boolean is_bound() const;
boolean is_value() const;
void clean_up();
GSM48__present__ind_template& operator=(template_sel other_value);
GSM48__present__ind_template& operator=(int other_value);
GSM48__present__ind_template& operator=(GSM48__present__ind::enum_type other_value);
GSM48__present__ind_template& operator=(const GSM48__present__ind& other_value);
GSM48__present__ind_template& operator=(const OPTIONAL<GSM48__present__ind>& other_value);
GSM48__present__ind_template& operator=(const GSM48__present__ind_template& other_value);

boolean match(GSM48__present__ind::enum_type other_value, boolean legacy = FALSE) const;
boolean match(const GSM48__present__ind& other_value, boolean legacy = FALSE) const;
GSM48__present__ind::enum_type valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
GSM48__present__ind_template& list_item(unsigned int list_index);
void log() const;
void log_match(const GSM48__present__ind& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
};

class GSM48__screening__ind : public Base_Type { // enum
friend class GSM48__screening__ind_template;
public:
enum enum_type { GSM48__SCR__IND__NOT__SCREENED = 0, GSM48__SCR__IND__VERIF__PASSED = 1, GSM48__SCR__IND__VERIF__FAILED = 2, GSM48__SCR__IND__NETW__PROVIDED = 3, UNKNOWN_VALUE = 4, UNBOUND_VALUE = 5 };
private:
enum_type enum_value;

public:
GSM48__screening__ind();
GSM48__screening__ind(int other_value);
GSM48__screening__ind(enum_type other_value);
GSM48__screening__ind(const GSM48__screening__ind& other_value);

GSM48__screening__ind& operator=(int other_value);
GSM48__screening__ind& operator=(enum_type other_value);
GSM48__screening__ind& operator=(const GSM48__screening__ind& other_value);

boolean operator==(enum_type other_value) const;
boolean operator==(const GSM48__screening__ind& other_value) const;
inline boolean operator!=(enum_type other_value) const { return !(*this == other_value); }
inline boolean operator!=(const GSM48__screening__ind& other_value) const { return !(*this == other_value); }
boolean operator<(enum_type other_value) const;
boolean operator<(const GSM48__screening__ind& other_value) const;
boolean operator>(enum_type other_value) const;
boolean operator>(const GSM48__screening__ind& other_value) const;
inline boolean operator<=(enum_type other_value) const { return !(*this > other_value); }
inline boolean operator<=(const GSM48__screening__ind& other_value) const { return !(*this > other_value); }
inline boolean operator>=(enum_type other_value) const { return !(*this < other_value); }
inline boolean operator>=(const GSM48__screening__ind& other_value) const { return !(*this < other_value); }

static const char *enum_to_str(enum_type enum_par);
static enum_type str_to_enum(const char *str_par);
static boolean is_valid_enum(int int_par);

static int enum2int(enum_type enum_par);
static int enum2int(const GSM48__screening__ind& enum_par);
int as_int() const { return enum2int(enum_value); }
void from_int(int p_val) { *this = p_val; }
void int2enum(int int_val);
operator enum_type() const;
inline boolean is_bound() const { return enum_value != UNBOUND_VALUE; }
inline boolean is_value() const { return enum_value != UNBOUND_VALUE; }
inline void clean_up(){ enum_value = UNBOUND_VALUE; }
inline boolean is_present() const { return is_bound(); }
void log() const;
void set_param(Module_Param& param);
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class GSM48__screening__ind_template : public Base_Template {
union {
GSM48__screening__ind::enum_type single_value;
struct {
unsigned int n_values;
GSM48__screening__ind_template *list_value;
} value_list;
};

void copy_template(const GSM48__screening__ind_template& other_value);

public:
GSM48__screening__ind_template();
GSM48__screening__ind_template(template_sel other_value);
GSM48__screening__ind_template(int other_value);
GSM48__screening__ind_template(GSM48__screening__ind::enum_type other_value);
GSM48__screening__ind_template(const GSM48__screening__ind& other_value);
GSM48__screening__ind_template(const OPTIONAL<GSM48__screening__ind>& other_value);
GSM48__screening__ind_template(const GSM48__screening__ind_template& other_value);
~GSM48__screening__ind_template();

boolean is_bound() const;
boolean is_value() const;
void clean_up();
GSM48__screening__ind_template& operator=(template_sel other_value);
GSM48__screening__ind_template& operator=(int other_value);
GSM48__screening__ind_template& operator=(GSM48__screening__ind::enum_type other_value);
GSM48__screening__ind_template& operator=(const GSM48__screening__ind& other_value);
GSM48__screening__ind_template& operator=(const OPTIONAL<GSM48__screening__ind>& other_value);
GSM48__screening__ind_template& operator=(const GSM48__screening__ind_template& other_value);

boolean match(GSM48__screening__ind::enum_type other_value, boolean legacy = FALSE) const;
boolean match(const GSM48__screening__ind& other_value, boolean legacy = FALSE) const;
GSM48__screening__ind::enum_type valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
GSM48__screening__ind_template& list_item(unsigned int list_index);
void log() const;
void log_match(const GSM48__screening__ind& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
};

class MNCC__number : public Base_Type {
  GSM48__type__of__number field_number__type;
  GSM48__num__plan__ind field_plan;
  GSM48__present__ind field_presence;
  GSM48__screening__ind field_screen;
  CHARSTRING field_number;
public:
  MNCC__number();
  MNCC__number(const GSM48__type__of__number& par_number__type,
    const GSM48__num__plan__ind& par_plan,
    const GSM48__present__ind& par_presence,
    const GSM48__screening__ind& par_screen,
    const CHARSTRING& par_number);
  MNCC__number(const MNCC__number& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  MNCC__number& operator=(const MNCC__number& other_value);
  boolean operator==(const MNCC__number& other_value) const;
  inline boolean operator!=(const MNCC__number& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

inline boolean is_present() const { return is_bound(); }
  boolean is_value() const;

  inline GSM48__type__of__number& number__type()
    {return field_number__type;}
  inline const GSM48__type__of__number& number__type() const
    {return field_number__type;}
  inline GSM48__num__plan__ind& plan()
    {return field_plan;}
  inline const GSM48__num__plan__ind& plan() const
    {return field_plan;}
  inline GSM48__present__ind& presence()
    {return field_presence;}
  inline const GSM48__present__ind& presence() const
    {return field_presence;}
  inline GSM48__screening__ind& screen()
    {return field_screen;}
  inline const GSM48__screening__ind& screen() const
    {return field_screen;}
  inline CHARSTRING& number()
    {return field_number;}
  inline const CHARSTRING& number() const
    {return field_number;}
  inline int size_of() const
    {return 5;}
  void log() const;
  void set_param(Module_Param& param);
  void set_implicit_omit();
  void encode_text(Text_Buf& text_buf) const;
  void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class MNCC__number_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
MNCC__number_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const MNCC__number& other_value);
void copy_template(const MNCC__number_template& other_value);

public:
MNCC__number_template();
MNCC__number_template(template_sel other_value);
MNCC__number_template(const MNCC__number& other_value);
MNCC__number_template(const OPTIONAL<MNCC__number>& other_value);
MNCC__number_template(const MNCC__number_template& other_value);
~MNCC__number_template();
MNCC__number_template& operator=(template_sel other_value);
MNCC__number_template& operator=(const MNCC__number& other_value);
MNCC__number_template& operator=(const OPTIONAL<MNCC__number>& other_value);
MNCC__number_template& operator=(const MNCC__number_template& other_value);
boolean match(const MNCC__number& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
MNCC__number valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
MNCC__number_template& list_item(unsigned int list_index) const;
GSM48__type__of__number_template& number__type();
const GSM48__type__of__number_template& number__type() const;
GSM48__num__plan__ind_template& plan();
const GSM48__num__plan__ind_template& plan() const;
GSM48__present__ind_template& presence();
const GSM48__present__ind_template& presence() const;
GSM48__screening__ind_template& screen();
const GSM48__screening__ind_template& screen() const;
CHARSTRING_template& number();
const CHARSTRING_template& number() const;
int size_of() const;
void log() const;
void log_match(const MNCC__number& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
};

class GSM48__cause__coding : public Base_Type { // enum
friend class GSM48__cause__coding_template;
public:
enum enum_type { GSM48__CAUSE__CS__Q931 = 0, GSM48__CAUSE__CS__RSVD = 1, GSM48__CAUSE__CS__NATIONAL = 2, GSM48__CAUSE__CS__GSM = 3, UNKNOWN_VALUE = 4, UNBOUND_VALUE = 5 };
private:
enum_type enum_value;

public:
GSM48__cause__coding();
GSM48__cause__coding(int other_value);
GSM48__cause__coding(enum_type other_value);
GSM48__cause__coding(const GSM48__cause__coding& other_value);

GSM48__cause__coding& operator=(int other_value);
GSM48__cause__coding& operator=(enum_type other_value);
GSM48__cause__coding& operator=(const GSM48__cause__coding& other_value);

boolean operator==(enum_type other_value) const;
boolean operator==(const GSM48__cause__coding& other_value) const;
inline boolean operator!=(enum_type other_value) const { return !(*this == other_value); }
inline boolean operator!=(const GSM48__cause__coding& other_value) const { return !(*this == other_value); }
boolean operator<(enum_type other_value) const;
boolean operator<(const GSM48__cause__coding& other_value) const;
boolean operator>(enum_type other_value) const;
boolean operator>(const GSM48__cause__coding& other_value) const;
inline boolean operator<=(enum_type other_value) const { return !(*this > other_value); }
inline boolean operator<=(const GSM48__cause__coding& other_value) const { return !(*this > other_value); }
inline boolean operator>=(enum_type other_value) const { return !(*this < other_value); }
inline boolean operator>=(const GSM48__cause__coding& other_value) const { return !(*this < other_value); }

static const char *enum_to_str(enum_type enum_par);
static enum_type str_to_enum(const char *str_par);
static boolean is_valid_enum(int int_par);

static int enum2int(enum_type enum_par);
static int enum2int(const GSM48__cause__coding& enum_par);
int as_int() const { return enum2int(enum_value); }
void from_int(int p_val) { *this = p_val; }
void int2enum(int int_val);
operator enum_type() const;
inline boolean is_bound() const { return enum_value != UNBOUND_VALUE; }
inline boolean is_value() const { return enum_value != UNBOUND_VALUE; }
inline void clean_up(){ enum_value = UNBOUND_VALUE; }
inline boolean is_present() const { return is_bound(); }
void log() const;
void set_param(Module_Param& param);
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class GSM48__cause__coding_template : public Base_Template {
union {
GSM48__cause__coding::enum_type single_value;
struct {
unsigned int n_values;
GSM48__cause__coding_template *list_value;
} value_list;
};

void copy_template(const GSM48__cause__coding_template& other_value);

public:
GSM48__cause__coding_template();
GSM48__cause__coding_template(template_sel other_value);
GSM48__cause__coding_template(int other_value);
GSM48__cause__coding_template(GSM48__cause__coding::enum_type other_value);
GSM48__cause__coding_template(const GSM48__cause__coding& other_value);
GSM48__cause__coding_template(const OPTIONAL<GSM48__cause__coding>& other_value);
GSM48__cause__coding_template(const GSM48__cause__coding_template& other_value);
~GSM48__cause__coding_template();

boolean is_bound() const;
boolean is_value() const;
void clean_up();
GSM48__cause__coding_template& operator=(template_sel other_value);
GSM48__cause__coding_template& operator=(int other_value);
GSM48__cause__coding_template& operator=(GSM48__cause__coding::enum_type other_value);
GSM48__cause__coding_template& operator=(const GSM48__cause__coding& other_value);
GSM48__cause__coding_template& operator=(const OPTIONAL<GSM48__cause__coding>& other_value);
GSM48__cause__coding_template& operator=(const GSM48__cause__coding_template& other_value);

boolean match(GSM48__cause__coding::enum_type other_value, boolean legacy = FALSE) const;
boolean match(const GSM48__cause__coding& other_value, boolean legacy = FALSE) const;
GSM48__cause__coding::enum_type valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
GSM48__cause__coding_template& list_item(unsigned int list_index);
void log() const;
void log_match(const GSM48__cause__coding& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
};

class GSM48__cause__loc : public Base_Type { // enum
friend class GSM48__cause__loc_template;
public:
enum enum_type { GSM48__CAUSE__LOC__USER = 0, GSM48__CAUSE__LOC__PRN__S__LU = 1, GSM48__CAUSE__LOC__PUN__S__LU = 2, GSM48__CAUSE__LOC__TRANS__NET = 3, GSM48__CAUSE__LOC__PUN__S__RU = 4, GSM48__CAUSE__LOC__PRN__S__RU = 5, GSM48__CAUSE__LOC__INN__NET = 7, GSM48__CAUSE__LOC__NET__BEYOND = 10, UNKNOWN_VALUE = 6, UNBOUND_VALUE = 8 };
private:
enum_type enum_value;

public:
GSM48__cause__loc();
GSM48__cause__loc(int other_value);
GSM48__cause__loc(enum_type other_value);
GSM48__cause__loc(const GSM48__cause__loc& other_value);

GSM48__cause__loc& operator=(int other_value);
GSM48__cause__loc& operator=(enum_type other_value);
GSM48__cause__loc& operator=(const GSM48__cause__loc& other_value);

boolean operator==(enum_type other_value) const;
boolean operator==(const GSM48__cause__loc& other_value) const;
inline boolean operator!=(enum_type other_value) const { return !(*this == other_value); }
inline boolean operator!=(const GSM48__cause__loc& other_value) const { return !(*this == other_value); }
boolean operator<(enum_type other_value) const;
boolean operator<(const GSM48__cause__loc& other_value) const;
boolean operator>(enum_type other_value) const;
boolean operator>(const GSM48__cause__loc& other_value) const;
inline boolean operator<=(enum_type other_value) const { return !(*this > other_value); }
inline boolean operator<=(const GSM48__cause__loc& other_value) const { return !(*this > other_value); }
inline boolean operator>=(enum_type other_value) const { return !(*this < other_value); }
inline boolean operator>=(const GSM48__cause__loc& other_value) const { return !(*this < other_value); }

static const char *enum_to_str(enum_type enum_par);
static enum_type str_to_enum(const char *str_par);
static boolean is_valid_enum(int int_par);

static int enum2int(enum_type enum_par);
static int enum2int(const GSM48__cause__loc& enum_par);
int as_int() const { return enum2int(enum_value); }
void from_int(int p_val) { *this = p_val; }
void int2enum(int int_val);
operator enum_type() const;
inline boolean is_bound() const { return enum_value != UNBOUND_VALUE; }
inline boolean is_value() const { return enum_value != UNBOUND_VALUE; }
inline void clean_up(){ enum_value = UNBOUND_VALUE; }
inline boolean is_present() const { return is_bound(); }
void log() const;
void set_param(Module_Param& param);
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class GSM48__cause__loc_template : public Base_Template {
union {
GSM48__cause__loc::enum_type single_value;
struct {
unsigned int n_values;
GSM48__cause__loc_template *list_value;
} value_list;
};

void copy_template(const GSM48__cause__loc_template& other_value);

public:
GSM48__cause__loc_template();
GSM48__cause__loc_template(template_sel other_value);
GSM48__cause__loc_template(int other_value);
GSM48__cause__loc_template(GSM48__cause__loc::enum_type other_value);
GSM48__cause__loc_template(const GSM48__cause__loc& other_value);
GSM48__cause__loc_template(const OPTIONAL<GSM48__cause__loc>& other_value);
GSM48__cause__loc_template(const GSM48__cause__loc_template& other_value);
~GSM48__cause__loc_template();

boolean is_bound() const;
boolean is_value() const;
void clean_up();
GSM48__cause__loc_template& operator=(template_sel other_value);
GSM48__cause__loc_template& operator=(int other_value);
GSM48__cause__loc_template& operator=(GSM48__cause__loc::enum_type other_value);
GSM48__cause__loc_template& operator=(const GSM48__cause__loc& other_value);
GSM48__cause__loc_template& operator=(const OPTIONAL<GSM48__cause__loc>& other_value);
GSM48__cause__loc_template& operator=(const GSM48__cause__loc_template& other_value);

boolean match(GSM48__cause__loc::enum_type other_value, boolean legacy = FALSE) const;
boolean match(const GSM48__cause__loc& other_value, boolean legacy = FALSE) const;
GSM48__cause__loc::enum_type valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
GSM48__cause__loc_template& list_item(unsigned int list_index);
void log() const;
void log_match(const GSM48__cause__loc& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
};

class MNCC__cause : public Base_Type {
  GSM48__cause__loc field_location;
  GSM48__cause__coding field_coding;
  INTEGER field_rec;
  INTEGER field_rec__val;
  INTEGER field_val;
  OCTETSTRING field_diag;
public:
  MNCC__cause();
  MNCC__cause(const GSM48__cause__loc& par_location,
    const GSM48__cause__coding& par_coding,
    const INTEGER& par_rec,
    const INTEGER& par_rec__val,
    const INTEGER& par_val,
    const OCTETSTRING& par_diag);
  MNCC__cause(const MNCC__cause& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  MNCC__cause& operator=(const MNCC__cause& other_value);
  boolean operator==(const MNCC__cause& other_value) const;
  inline boolean operator!=(const MNCC__cause& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

inline boolean is_present() const { return is_bound(); }
  boolean is_value() const;

  inline GSM48__cause__loc& location()
    {return field_location;}
  inline const GSM48__cause__loc& location() const
    {return field_location;}
  inline GSM48__cause__coding& coding()
    {return field_coding;}
  inline const GSM48__cause__coding& coding() const
    {return field_coding;}
  inline INTEGER& rec()
    {return field_rec;}
  inline const INTEGER& rec() const
    {return field_rec;}
  inline INTEGER& rec__val()
    {return field_rec__val;}
  inline const INTEGER& rec__val() const
    {return field_rec__val;}
  inline INTEGER& val()
    {return field_val;}
  inline const INTEGER& val() const
    {return field_val;}
  inline OCTETSTRING& diag()
    {return field_diag;}
  inline const OCTETSTRING& diag() const
    {return field_diag;}
  inline int size_of() const
    {return 6;}
  void log() const;
  void set_param(Module_Param& param);
  void set_implicit_omit();
  void encode_text(Text_Buf& text_buf) const;
  void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class MNCC__cause_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
MNCC__cause_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const MNCC__cause& other_value);
void copy_template(const MNCC__cause_template& other_value);

public:
MNCC__cause_template();
MNCC__cause_template(template_sel other_value);
MNCC__cause_template(const MNCC__cause& other_value);
MNCC__cause_template(const OPTIONAL<MNCC__cause>& other_value);
MNCC__cause_template(const MNCC__cause_template& other_value);
~MNCC__cause_template();
MNCC__cause_template& operator=(template_sel other_value);
MNCC__cause_template& operator=(const MNCC__cause& other_value);
MNCC__cause_template& operator=(const OPTIONAL<MNCC__cause>& other_value);
MNCC__cause_template& operator=(const MNCC__cause_template& other_value);
boolean match(const MNCC__cause& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
MNCC__cause valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
MNCC__cause_template& list_item(unsigned int list_index) const;
GSM48__cause__loc_template& location();
const GSM48__cause__loc_template& location() const;
GSM48__cause__coding_template& coding();
const GSM48__cause__coding_template& coding() const;
INTEGER_template& rec();
const INTEGER_template& rec() const;
INTEGER_template& rec__val();
const INTEGER_template& rec__val() const;
INTEGER_template& val();
const INTEGER_template& val() const;
OCTETSTRING_template& diag();
const OCTETSTRING_template& diag() const;
int size_of() const;
void log() const;
void log_match(const MNCC__cause& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
};

class MNCC__useruser : public Base_Type {
  INTEGER field_proto;
  CHARSTRING field_info;
public:
  MNCC__useruser();
  MNCC__useruser(const INTEGER& par_proto,
    const CHARSTRING& par_info);
  MNCC__useruser(const MNCC__useruser& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  MNCC__useruser& operator=(const MNCC__useruser& other_value);
  boolean operator==(const MNCC__useruser& other_value) const;
  inline boolean operator!=(const MNCC__useruser& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

inline boolean is_present() const { return is_bound(); }
  boolean is_value() const;

  inline INTEGER& proto()
    {return field_proto;}
  inline const INTEGER& proto() const
    {return field_proto;}
  inline CHARSTRING& info()
    {return field_info;}
  inline const CHARSTRING& info() const
    {return field_info;}
  inline int size_of() const
    {return 2;}
  void log() const;
  void set_param(Module_Param& param);
  void set_implicit_omit();
  void encode_text(Text_Buf& text_buf) const;
  void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class MNCC__useruser_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
MNCC__useruser_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const MNCC__useruser& other_value);
void copy_template(const MNCC__useruser_template& other_value);

public:
MNCC__useruser_template();
MNCC__useruser_template(template_sel other_value);
MNCC__useruser_template(const MNCC__useruser& other_value);
MNCC__useruser_template(const OPTIONAL<MNCC__useruser>& other_value);
MNCC__useruser_template(const MNCC__useruser_template& other_value);
~MNCC__useruser_template();
MNCC__useruser_template& operator=(template_sel other_value);
MNCC__useruser_template& operator=(const MNCC__useruser& other_value);
MNCC__useruser_template& operator=(const OPTIONAL<MNCC__useruser>& other_value);
MNCC__useruser_template& operator=(const MNCC__useruser_template& other_value);
boolean match(const MNCC__useruser& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
MNCC__useruser valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
MNCC__useruser_template& list_item(unsigned int list_index) const;
INTEGER_template& proto();
const INTEGER_template& proto() const;
CHARSTRING_template& info();
const CHARSTRING_template& info() const;
int size_of() const;
void log() const;
void log_match(const MNCC__useruser& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
};

class MNCC__progress : public Base_Type {
  INTEGER field_coding;
  INTEGER field_location;
  INTEGER field_descr;
public:
  MNCC__progress();
  MNCC__progress(const INTEGER& par_coding,
    const INTEGER& par_location,
    const INTEGER& par_descr);
  MNCC__progress(const MNCC__progress& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  MNCC__progress& operator=(const MNCC__progress& other_value);
  boolean operator==(const MNCC__progress& other_value) const;
  inline boolean operator!=(const MNCC__progress& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

inline boolean is_present() const { return is_bound(); }
  boolean is_value() const;

  inline INTEGER& coding()
    {return field_coding;}
  inline const INTEGER& coding() const
    {return field_coding;}
  inline INTEGER& location()
    {return field_location;}
  inline const INTEGER& location() const
    {return field_location;}
  inline INTEGER& descr()
    {return field_descr;}
  inline const INTEGER& descr() const
    {return field_descr;}
  inline int size_of() const
    {return 3;}
  void log() const;
  void set_param(Module_Param& param);
  void set_implicit_omit();
  void encode_text(Text_Buf& text_buf) const;
  void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class MNCC__progress_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
MNCC__progress_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const MNCC__progress& other_value);
void copy_template(const MNCC__progress_template& other_value);

public:
MNCC__progress_template();
MNCC__progress_template(template_sel other_value);
MNCC__progress_template(const MNCC__progress& other_value);
MNCC__progress_template(const OPTIONAL<MNCC__progress>& other_value);
MNCC__progress_template(const MNCC__progress_template& other_value);
~MNCC__progress_template();
MNCC__progress_template& operator=(template_sel other_value);
MNCC__progress_template& operator=(const MNCC__progress& other_value);
MNCC__progress_template& operator=(const OPTIONAL<MNCC__progress>& other_value);
MNCC__progress_template& operator=(const MNCC__progress_template& other_value);
boolean match(const MNCC__progress& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
MNCC__progress valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
MNCC__progress_template& list_item(unsigned int list_index) const;
INTEGER_template& coding();
const INTEGER_template& coding() const;
INTEGER_template& location();
const INTEGER_template& location() const;
INTEGER_template& descr();
const INTEGER_template& descr() const;
int size_of() const;
void log() const;
void log_match(const MNCC__progress& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
};

class MNCC__cccap : public Base_Type {
  INTEGER field_dtmf;
  INTEGER field_pcp;
public:
  MNCC__cccap();
  MNCC__cccap(const INTEGER& par_dtmf,
    const INTEGER& par_pcp);
  MNCC__cccap(const MNCC__cccap& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  MNCC__cccap& operator=(const MNCC__cccap& other_value);
  boolean operator==(const MNCC__cccap& other_value) const;
  inline boolean operator!=(const MNCC__cccap& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

inline boolean is_present() const { return is_bound(); }
  boolean is_value() const;

  inline INTEGER& dtmf()
    {return field_dtmf;}
  inline const INTEGER& dtmf() const
    {return field_dtmf;}
  inline INTEGER& pcp()
    {return field_pcp;}
  inline const INTEGER& pcp() const
    {return field_pcp;}
  inline int size_of() const
    {return 2;}
  void log() const;
  void set_param(Module_Param& param);
  void set_implicit_omit();
  void encode_text(Text_Buf& text_buf) const;
  void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class MNCC__cccap_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
MNCC__cccap_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const MNCC__cccap& other_value);
void copy_template(const MNCC__cccap_template& other_value);

public:
MNCC__cccap_template();
MNCC__cccap_template(template_sel other_value);
MNCC__cccap_template(const MNCC__cccap& other_value);
MNCC__cccap_template(const OPTIONAL<MNCC__cccap>& other_value);
MNCC__cccap_template(const MNCC__cccap_template& other_value);
~MNCC__cccap_template();
MNCC__cccap_template& operator=(template_sel other_value);
MNCC__cccap_template& operator=(const MNCC__cccap& other_value);
MNCC__cccap_template& operator=(const OPTIONAL<MNCC__cccap>& other_value);
MNCC__cccap_template& operator=(const MNCC__cccap_template& other_value);
boolean match(const MNCC__cccap& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
MNCC__cccap valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
MNCC__cccap_template& list_item(unsigned int list_index) const;
INTEGER_template& dtmf();
const INTEGER_template& dtmf() const;
INTEGER_template& pcp();
const INTEGER_template& pcp() const;
int size_of() const;
void log() const;
void log_match(const MNCC__cccap& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
};

class MNCC__bcap : public Base_Type { // enum
friend class MNCC__bcap_template;
public:
enum enum_type { GSM__MNCC__BCAP__SPEECH = 0, GSM__MNCC__BCAP__UNR__DIG = 1, GSM__MNCC__BCAP__AUDIO = 2, GSM__MNCC__BCAP__FAX__G3 = 3, GSM__MNCC__BCAP__OTHER__ITC = 4, GSM__MNCC__BCAP__RESERVED = 7, UNKNOWN_VALUE = 5, UNBOUND_VALUE = 6 };
private:
enum_type enum_value;

public:
MNCC__bcap();
MNCC__bcap(int other_value);
MNCC__bcap(enum_type other_value);
MNCC__bcap(const MNCC__bcap& other_value);

MNCC__bcap& operator=(int other_value);
MNCC__bcap& operator=(enum_type other_value);
MNCC__bcap& operator=(const MNCC__bcap& other_value);

boolean operator==(enum_type other_value) const;
boolean operator==(const MNCC__bcap& other_value) const;
inline boolean operator!=(enum_type other_value) const { return !(*this == other_value); }
inline boolean operator!=(const MNCC__bcap& other_value) const { return !(*this == other_value); }
boolean operator<(enum_type other_value) const;
boolean operator<(const MNCC__bcap& other_value) const;
boolean operator>(enum_type other_value) const;
boolean operator>(const MNCC__bcap& other_value) const;
inline boolean operator<=(enum_type other_value) const { return !(*this > other_value); }
inline boolean operator<=(const MNCC__bcap& other_value) const { return !(*this > other_value); }
inline boolean operator>=(enum_type other_value) const { return !(*this < other_value); }
inline boolean operator>=(const MNCC__bcap& other_value) const { return !(*this < other_value); }

static const char *enum_to_str(enum_type enum_par);
static enum_type str_to_enum(const char *str_par);
static boolean is_valid_enum(int int_par);

static int enum2int(enum_type enum_par);
static int enum2int(const MNCC__bcap& enum_par);
int as_int() const { return enum2int(enum_value); }
void from_int(int p_val) { *this = p_val; }
void int2enum(int int_val);
operator enum_type() const;
inline boolean is_bound() const { return enum_value != UNBOUND_VALUE; }
inline boolean is_value() const { return enum_value != UNBOUND_VALUE; }
inline void clean_up(){ enum_value = UNBOUND_VALUE; }
inline boolean is_present() const { return is_bound(); }
void log() const;
void set_param(Module_Param& param);
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class MNCC__bcap_template : public Base_Template {
union {
MNCC__bcap::enum_type single_value;
struct {
unsigned int n_values;
MNCC__bcap_template *list_value;
} value_list;
};

void copy_template(const MNCC__bcap_template& other_value);

public:
MNCC__bcap_template();
MNCC__bcap_template(template_sel other_value);
MNCC__bcap_template(int other_value);
MNCC__bcap_template(MNCC__bcap::enum_type other_value);
MNCC__bcap_template(const MNCC__bcap& other_value);
MNCC__bcap_template(const OPTIONAL<MNCC__bcap>& other_value);
MNCC__bcap_template(const MNCC__bcap_template& other_value);
~MNCC__bcap_template();

boolean is_bound() const;
boolean is_value() const;
void clean_up();
MNCC__bcap_template& operator=(template_sel other_value);
MNCC__bcap_template& operator=(int other_value);
MNCC__bcap_template& operator=(MNCC__bcap::enum_type other_value);
MNCC__bcap_template& operator=(const MNCC__bcap& other_value);
MNCC__bcap_template& operator=(const OPTIONAL<MNCC__bcap>& other_value);
MNCC__bcap_template& operator=(const MNCC__bcap_template& other_value);

boolean match(MNCC__bcap::enum_type other_value, boolean legacy = FALSE) const;
boolean match(const MNCC__bcap& other_value, boolean legacy = FALSE) const;
MNCC__bcap::enum_type valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
MNCC__bcap_template& list_item(unsigned int list_index);
void log() const;
void log_match(const MNCC__bcap& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
};

class MNCC__PDU__Signal : public Base_Type {
  INTEGER field_callref;
  OPTIONAL<MNCC__bearer__cap> field_bearer__cap;
  OPTIONAL<MNCC__number> field_called;
  OPTIONAL<MNCC__number> field_calling;
  OPTIONAL<MNCC__number> field_redirecting;
  OPTIONAL<MNCC__number> field_connected;
  OPTIONAL<MNCC__cause> field_cause;
  OPTIONAL<MNCC__progress> field_progress;
  OPTIONAL<MNCC__useruser> field_useruser;
  OPTIONAL<CHARSTRING> field_facility;
  OPTIONAL<MNCC__cccap> field_cccap;
  OPTIONAL<CHARSTRING> field_ssversion;
  INTEGER field_clir__sup;
  INTEGER field_clir__inv;
  OPTIONAL<INTEGER> field_signal;
  OPTIONAL<CHARSTRING> field_keypad;
  INTEGER field_more;
  INTEGER field_notify;
  OPTIONAL<INTEGER> field_emergency;
  CHARSTRING field_imsi;
  INTEGER field_lchan__type;
  INTEGER field_lchan__mode;
public:
  MNCC__PDU__Signal();
  MNCC__PDU__Signal(const INTEGER& par_callref,
    const OPTIONAL<MNCC__bearer__cap>& par_bearer__cap,
    const OPTIONAL<MNCC__number>& par_called,
    const OPTIONAL<MNCC__number>& par_calling,
    const OPTIONAL<MNCC__number>& par_redirecting,
    const OPTIONAL<MNCC__number>& par_connected,
    const OPTIONAL<MNCC__cause>& par_cause,
    const OPTIONAL<MNCC__progress>& par_progress,
    const OPTIONAL<MNCC__useruser>& par_useruser,
    const OPTIONAL<CHARSTRING>& par_facility,
    const OPTIONAL<MNCC__cccap>& par_cccap,
    const OPTIONAL<CHARSTRING>& par_ssversion,
    const INTEGER& par_clir__sup,
    const INTEGER& par_clir__inv,
    const OPTIONAL<INTEGER>& par_signal,
    const OPTIONAL<CHARSTRING>& par_keypad,
    const INTEGER& par_more,
    const INTEGER& par_notify,
    const OPTIONAL<INTEGER>& par_emergency,
    const CHARSTRING& par_imsi,
    const INTEGER& par_lchan__type,
    const INTEGER& par_lchan__mode);
  MNCC__PDU__Signal(const MNCC__PDU__Signal& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  MNCC__PDU__Signal& operator=(const MNCC__PDU__Signal& other_value);
  boolean operator==(const MNCC__PDU__Signal& other_value) const;
  inline boolean operator!=(const MNCC__PDU__Signal& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

inline boolean is_present() const { return is_bound(); }
  boolean is_value() const;

  inline INTEGER& callref()
    {return field_callref;}
  inline const INTEGER& callref() const
    {return field_callref;}
  inline OPTIONAL<MNCC__bearer__cap>& bearer__cap()
    {return field_bearer__cap;}
  inline const OPTIONAL<MNCC__bearer__cap>& bearer__cap() const
    {return field_bearer__cap;}
  inline OPTIONAL<MNCC__number>& called()
    {return field_called;}
  inline const OPTIONAL<MNCC__number>& called() const
    {return field_called;}
  inline OPTIONAL<MNCC__number>& calling()
    {return field_calling;}
  inline const OPTIONAL<MNCC__number>& calling() const
    {return field_calling;}
  inline OPTIONAL<MNCC__number>& redirecting()
    {return field_redirecting;}
  inline const OPTIONAL<MNCC__number>& redirecting() const
    {return field_redirecting;}
  inline OPTIONAL<MNCC__number>& connected()
    {return field_connected;}
  inline const OPTIONAL<MNCC__number>& connected() const
    {return field_connected;}
  inline OPTIONAL<MNCC__cause>& cause()
    {return field_cause;}
  inline const OPTIONAL<MNCC__cause>& cause() const
    {return field_cause;}
  inline OPTIONAL<MNCC__progress>& progress()
    {return field_progress;}
  inline const OPTIONAL<MNCC__progress>& progress() const
    {return field_progress;}
  inline OPTIONAL<MNCC__useruser>& useruser()
    {return field_useruser;}
  inline const OPTIONAL<MNCC__useruser>& useruser() const
    {return field_useruser;}
  inline OPTIONAL<CHARSTRING>& facility()
    {return field_facility;}
  inline const OPTIONAL<CHARSTRING>& facility() const
    {return field_facility;}
  inline OPTIONAL<MNCC__cccap>& cccap()
    {return field_cccap;}
  inline const OPTIONAL<MNCC__cccap>& cccap() const
    {return field_cccap;}
  inline OPTIONAL<CHARSTRING>& ssversion()
    {return field_ssversion;}
  inline const OPTIONAL<CHARSTRING>& ssversion() const
    {return field_ssversion;}
  inline INTEGER& clir__sup()
    {return field_clir__sup;}
  inline const INTEGER& clir__sup() const
    {return field_clir__sup;}
  inline INTEGER& clir__inv()
    {return field_clir__inv;}
  inline const INTEGER& clir__inv() const
    {return field_clir__inv;}
  inline OPTIONAL<INTEGER>& signal()
    {return field_signal;}
  inline const OPTIONAL<INTEGER>& signal() const
    {return field_signal;}
  inline OPTIONAL<CHARSTRING>& keypad()
    {return field_keypad;}
  inline const OPTIONAL<CHARSTRING>& keypad() const
    {return field_keypad;}
  inline INTEGER& more()
    {return field_more;}
  inline const INTEGER& more() const
    {return field_more;}
  inline INTEGER& notify()
    {return field_notify;}
  inline const INTEGER& notify() const
    {return field_notify;}
  inline OPTIONAL<INTEGER>& emergency()
    {return field_emergency;}
  inline const OPTIONAL<INTEGER>& emergency() const
    {return field_emergency;}
  inline CHARSTRING& imsi()
    {return field_imsi;}
  inline const CHARSTRING& imsi() const
    {return field_imsi;}
  inline INTEGER& lchan__type()
    {return field_lchan__type;}
  inline const INTEGER& lchan__type() const
    {return field_lchan__type;}
  inline INTEGER& lchan__mode()
    {return field_lchan__mode;}
  inline const INTEGER& lchan__mode() const
    {return field_lchan__mode;}
  int size_of() const;
  void log() const;
  void set_param(Module_Param& param);
  void set_implicit_omit();
  void encode_text(Text_Buf& text_buf) const;
  void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class MNCC__PDU__Signal_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
MNCC__PDU__Signal_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const MNCC__PDU__Signal& other_value);
void copy_template(const MNCC__PDU__Signal_template& other_value);

public:
MNCC__PDU__Signal_template();
MNCC__PDU__Signal_template(template_sel other_value);
MNCC__PDU__Signal_template(const MNCC__PDU__Signal& other_value);
MNCC__PDU__Signal_template(const OPTIONAL<MNCC__PDU__Signal>& other_value);
MNCC__PDU__Signal_template(const MNCC__PDU__Signal_template& other_value);
~MNCC__PDU__Signal_template();
MNCC__PDU__Signal_template& operator=(template_sel other_value);
MNCC__PDU__Signal_template& operator=(const MNCC__PDU__Signal& other_value);
MNCC__PDU__Signal_template& operator=(const OPTIONAL<MNCC__PDU__Signal>& other_value);
MNCC__PDU__Signal_template& operator=(const MNCC__PDU__Signal_template& other_value);
boolean match(const MNCC__PDU__Signal& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
MNCC__PDU__Signal valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
MNCC__PDU__Signal_template& list_item(unsigned int list_index) const;
INTEGER_template& callref();
const INTEGER_template& callref() const;
MNCC__bearer__cap_template& bearer__cap();
const MNCC__bearer__cap_template& bearer__cap() const;
MNCC__number_template& called();
const MNCC__number_template& called() const;
MNCC__number_template& calling();
const MNCC__number_template& calling() const;
MNCC__number_template& redirecting();
const MNCC__number_template& redirecting() const;
MNCC__number_template& connected();
const MNCC__number_template& connected() const;
MNCC__cause_template& cause();
const MNCC__cause_template& cause() const;
MNCC__progress_template& progress();
const MNCC__progress_template& progress() const;
MNCC__useruser_template& useruser();
const MNCC__useruser_template& useruser() const;
CHARSTRING_template& facility();
const CHARSTRING_template& facility() const;
MNCC__cccap_template& cccap();
const MNCC__cccap_template& cccap() const;
CHARSTRING_template& ssversion();
const CHARSTRING_template& ssversion() const;
INTEGER_template& clir__sup();
const INTEGER_template& clir__sup() const;
INTEGER_template& clir__inv();
const INTEGER_template& clir__inv() const;
INTEGER_template& signal();
const INTEGER_template& signal() const;
CHARSTRING_template& keypad();
const CHARSTRING_template& keypad() const;
INTEGER_template& more();
const INTEGER_template& more() const;
INTEGER_template& notify();
const INTEGER_template& notify() const;
INTEGER_template& emergency();
const INTEGER_template& emergency() const;
CHARSTRING_template& imsi();
const CHARSTRING_template& imsi() const;
INTEGER_template& lchan__type();
const INTEGER_template& lchan__type() const;
INTEGER_template& lchan__mode();
const INTEGER_template& lchan__mode() const;
int size_of() const;
void log() const;
void log_match(const MNCC__PDU__Signal& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
};

class MNCC__PDU__Data : public Base_Type {
  INTEGER field_callref;
  OCTETSTRING field_data;
public:
  MNCC__PDU__Data();
  MNCC__PDU__Data(const INTEGER& par_callref,
    const OCTETSTRING& par_data);
  MNCC__PDU__Data(const MNCC__PDU__Data& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  MNCC__PDU__Data& operator=(const MNCC__PDU__Data& other_value);
  boolean operator==(const MNCC__PDU__Data& other_value) const;
  inline boolean operator!=(const MNCC__PDU__Data& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

inline boolean is_present() const { return is_bound(); }
  boolean is_value() const;

  inline INTEGER& callref()
    {return field_callref;}
  inline const INTEGER& callref() const
    {return field_callref;}
  inline OCTETSTRING& data()
    {return field_data;}
  inline const OCTETSTRING& data() const
    {return field_data;}
  inline int size_of() const
    {return 2;}
  void log() const;
  void set_param(Module_Param& param);
  void set_implicit_omit();
  void encode_text(Text_Buf& text_buf) const;
  void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class MNCC__PDU__Data_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
MNCC__PDU__Data_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const MNCC__PDU__Data& other_value);
void copy_template(const MNCC__PDU__Data_template& other_value);

public:
MNCC__PDU__Data_template();
MNCC__PDU__Data_template(template_sel other_value);
MNCC__PDU__Data_template(const MNCC__PDU__Data& other_value);
MNCC__PDU__Data_template(const OPTIONAL<MNCC__PDU__Data>& other_value);
MNCC__PDU__Data_template(const MNCC__PDU__Data_template& other_value);
~MNCC__PDU__Data_template();
MNCC__PDU__Data_template& operator=(template_sel other_value);
MNCC__PDU__Data_template& operator=(const MNCC__PDU__Data& other_value);
MNCC__PDU__Data_template& operator=(const OPTIONAL<MNCC__PDU__Data>& other_value);
MNCC__PDU__Data_template& operator=(const MNCC__PDU__Data_template& other_value);
boolean match(const MNCC__PDU__Data& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
MNCC__PDU__Data valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
MNCC__PDU__Data_template& list_item(unsigned int list_index) const;
INTEGER_template& callref();
const INTEGER_template& callref() const;
OCTETSTRING_template& data();
const OCTETSTRING_template& data() const;
int size_of() const;
void log() const;
void log_match(const MNCC__PDU__Data& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
};

class MNCC__PDU__Rtp : public Base_Type {
  INTEGER field_callref;
  INTEGER field_ip;
  INTEGER field_rtp__port;
  INTEGER field_payload__type;
  INTEGER field_payload__msg__type;
public:
  MNCC__PDU__Rtp();
  MNCC__PDU__Rtp(const INTEGER& par_callref,
    const INTEGER& par_ip,
    const INTEGER& par_rtp__port,
    const INTEGER& par_payload__type,
    const INTEGER& par_payload__msg__type);
  MNCC__PDU__Rtp(const MNCC__PDU__Rtp& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  MNCC__PDU__Rtp& operator=(const MNCC__PDU__Rtp& other_value);
  boolean operator==(const MNCC__PDU__Rtp& other_value) const;
  inline boolean operator!=(const MNCC__PDU__Rtp& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

inline boolean is_present() const { return is_bound(); }
  boolean is_value() const;

  inline INTEGER& callref()
    {return field_callref;}
  inline const INTEGER& callref() const
    {return field_callref;}
  inline INTEGER& ip()
    {return field_ip;}
  inline const INTEGER& ip() const
    {return field_ip;}
  inline INTEGER& rtp__port()
    {return field_rtp__port;}
  inline const INTEGER& rtp__port() const
    {return field_rtp__port;}
  inline INTEGER& payload__type()
    {return field_payload__type;}
  inline const INTEGER& payload__type() const
    {return field_payload__type;}
  inline INTEGER& payload__msg__type()
    {return field_payload__msg__type;}
  inline const INTEGER& payload__msg__type() const
    {return field_payload__msg__type;}
  inline int size_of() const
    {return 5;}
  void log() const;
  void set_param(Module_Param& param);
  void set_implicit_omit();
  void encode_text(Text_Buf& text_buf) const;
  void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class MNCC__PDU__Rtp_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
MNCC__PDU__Rtp_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const MNCC__PDU__Rtp& other_value);
void copy_template(const MNCC__PDU__Rtp_template& other_value);

public:
MNCC__PDU__Rtp_template();
MNCC__PDU__Rtp_template(template_sel other_value);
MNCC__PDU__Rtp_template(const MNCC__PDU__Rtp& other_value);
MNCC__PDU__Rtp_template(const OPTIONAL<MNCC__PDU__Rtp>& other_value);
MNCC__PDU__Rtp_template(const MNCC__PDU__Rtp_template& other_value);
~MNCC__PDU__Rtp_template();
MNCC__PDU__Rtp_template& operator=(template_sel other_value);
MNCC__PDU__Rtp_template& operator=(const MNCC__PDU__Rtp& other_value);
MNCC__PDU__Rtp_template& operator=(const OPTIONAL<MNCC__PDU__Rtp>& other_value);
MNCC__PDU__Rtp_template& operator=(const MNCC__PDU__Rtp_template& other_value);
boolean match(const MNCC__PDU__Rtp& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
MNCC__PDU__Rtp valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
MNCC__PDU__Rtp_template& list_item(unsigned int list_index) const;
INTEGER_template& callref();
const INTEGER_template& callref() const;
INTEGER_template& ip();
const INTEGER_template& ip() const;
INTEGER_template& rtp__port();
const INTEGER_template& rtp__port() const;
INTEGER_template& payload__type();
const INTEGER_template& payload__type() const;
INTEGER_template& payload__msg__type();
const INTEGER_template& payload__msg__type() const;
int size_of() const;
void log() const;
void log_match(const MNCC__PDU__Rtp& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
};

class MNCC__PDU__Hello : public Base_Type {
  INTEGER field_version;
  INTEGER field_mncc__size;
  INTEGER field_data__frame__size;
  INTEGER field_called__offset;
  INTEGER field_signal__offset;
  INTEGER field_emergency__offset;
  INTEGER field_lchan__type__offset;
public:
  MNCC__PDU__Hello();
  MNCC__PDU__Hello(const INTEGER& par_version,
    const INTEGER& par_mncc__size,
    const INTEGER& par_data__frame__size,
    const INTEGER& par_called__offset,
    const INTEGER& par_signal__offset,
    const INTEGER& par_emergency__offset,
    const INTEGER& par_lchan__type__offset);
  MNCC__PDU__Hello(const MNCC__PDU__Hello& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  MNCC__PDU__Hello& operator=(const MNCC__PDU__Hello& other_value);
  boolean operator==(const MNCC__PDU__Hello& other_value) const;
  inline boolean operator!=(const MNCC__PDU__Hello& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

inline boolean is_present() const { return is_bound(); }
  boolean is_value() const;

  inline INTEGER& version()
    {return field_version;}
  inline const INTEGER& version() const
    {return field_version;}
  inline INTEGER& mncc__size()
    {return field_mncc__size;}
  inline const INTEGER& mncc__size() const
    {return field_mncc__size;}
  inline INTEGER& data__frame__size()
    {return field_data__frame__size;}
  inline const INTEGER& data__frame__size() const
    {return field_data__frame__size;}
  inline INTEGER& called__offset()
    {return field_called__offset;}
  inline const INTEGER& called__offset() const
    {return field_called__offset;}
  inline INTEGER& signal__offset()
    {return field_signal__offset;}
  inline const INTEGER& signal__offset() const
    {return field_signal__offset;}
  inline INTEGER& emergency__offset()
    {return field_emergency__offset;}
  inline const INTEGER& emergency__offset() const
    {return field_emergency__offset;}
  inline INTEGER& lchan__type__offset()
    {return field_lchan__type__offset;}
  inline const INTEGER& lchan__type__offset() const
    {return field_lchan__type__offset;}
  inline int size_of() const
    {return 7;}
  void log() const;
  void set_param(Module_Param& param);
  void set_implicit_omit();
  void encode_text(Text_Buf& text_buf) const;
  void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class MNCC__PDU__Hello_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
MNCC__PDU__Hello_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const MNCC__PDU__Hello& other_value);
void copy_template(const MNCC__PDU__Hello_template& other_value);

public:
MNCC__PDU__Hello_template();
MNCC__PDU__Hello_template(template_sel other_value);
MNCC__PDU__Hello_template(const MNCC__PDU__Hello& other_value);
MNCC__PDU__Hello_template(const OPTIONAL<MNCC__PDU__Hello>& other_value);
MNCC__PDU__Hello_template(const MNCC__PDU__Hello_template& other_value);
~MNCC__PDU__Hello_template();
MNCC__PDU__Hello_template& operator=(template_sel other_value);
MNCC__PDU__Hello_template& operator=(const MNCC__PDU__Hello& other_value);
MNCC__PDU__Hello_template& operator=(const OPTIONAL<MNCC__PDU__Hello>& other_value);
MNCC__PDU__Hello_template& operator=(const MNCC__PDU__Hello_template& other_value);
boolean match(const MNCC__PDU__Hello& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
MNCC__PDU__Hello valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
MNCC__PDU__Hello_template& list_item(unsigned int list_index) const;
INTEGER_template& version();
const INTEGER_template& version() const;
INTEGER_template& mncc__size();
const INTEGER_template& mncc__size() const;
INTEGER_template& data__frame__size();
const INTEGER_template& data__frame__size() const;
INTEGER_template& called__offset();
const INTEGER_template& called__offset() const;
INTEGER_template& signal__offset();
const INTEGER_template& signal__offset() const;
INTEGER_template& emergency__offset();
const INTEGER_template& emergency__offset() const;
INTEGER_template& lchan__type__offset();
const INTEGER_template& lchan__type__offset() const;
int size_of() const;
void log() const;
void log_match(const MNCC__PDU__Hello& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
};

class MNCC__MsgUnion : public Base_Type {
public:
enum union_selection_type { UNBOUND_VALUE = 0, ALT_signal = 1, ALT_data = 2, ALT_rtp = 3, ALT_hello = 4 };
private:
union_selection_type union_selection;
union {
MNCC__PDU__Signal *field_signal;
MNCC__PDU__Data *field_data;
MNCC__PDU__Rtp *field_rtp;
MNCC__PDU__Hello *field_hello;
};
void copy_value(const MNCC__MsgUnion& other_value);

public:
MNCC__MsgUnion();
MNCC__MsgUnion(const MNCC__MsgUnion& other_value);
~MNCC__MsgUnion();
MNCC__MsgUnion& operator=(const MNCC__MsgUnion& other_value);
boolean operator==(const MNCC__MsgUnion& other_value) const;
inline boolean operator!=(const MNCC__MsgUnion& other_value) const { return !(*this == other_value); }
MNCC__PDU__Signal& signal();
const MNCC__PDU__Signal& signal() const;
MNCC__PDU__Data& data();
const MNCC__PDU__Data& data() const;
MNCC__PDU__Rtp& rtp();
const MNCC__PDU__Rtp& rtp() const;
MNCC__PDU__Hello& hello();
const MNCC__PDU__Hello& hello() const;
inline union_selection_type get_selection() const { return union_selection; }
boolean ischosen(union_selection_type checked_selection) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
inline boolean is_present() const { return is_bound(); }
void log() const;
void set_param(Module_Param& param);
  void set_implicit_omit();
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class MNCC__MsgUnion_template : public Base_Template {
union {
struct {
MNCC__MsgUnion::union_selection_type union_selection;
union {
MNCC__PDU__Signal_template *field_signal;
MNCC__PDU__Data_template *field_data;
MNCC__PDU__Rtp_template *field_rtp;
MNCC__PDU__Hello_template *field_hello;
};
} single_value;
struct {
unsigned int n_values;
MNCC__MsgUnion_template *list_value;
} value_list;
};
void copy_value(const MNCC__MsgUnion& other_value);

void copy_template(const MNCC__MsgUnion_template& other_value);

public:
MNCC__MsgUnion_template();
MNCC__MsgUnion_template(template_sel other_value);
MNCC__MsgUnion_template(const MNCC__MsgUnion& other_value);
MNCC__MsgUnion_template(const OPTIONAL<MNCC__MsgUnion>& other_value);
MNCC__MsgUnion_template(const MNCC__MsgUnion_template& other_value);
~MNCC__MsgUnion_template();
void clean_up();
MNCC__MsgUnion_template& operator=(template_sel other_value);
MNCC__MsgUnion_template& operator=(const MNCC__MsgUnion& other_value);
MNCC__MsgUnion_template& operator=(const OPTIONAL<MNCC__MsgUnion>& other_value);
MNCC__MsgUnion_template& operator=(const MNCC__MsgUnion_template& other_value);
boolean match(const MNCC__MsgUnion& other_value, boolean legacy = FALSE) const;
boolean is_value() const;MNCC__MsgUnion valueof() const;
MNCC__MsgUnion_template& list_item(unsigned int list_index) const;
void set_type(template_sel template_type, unsigned int list_length);
MNCC__PDU__Signal_template& signal();
const MNCC__PDU__Signal_template& signal() const;
MNCC__PDU__Data_template& data();
const MNCC__PDU__Data_template& data() const;
MNCC__PDU__Rtp_template& rtp();
const MNCC__PDU__Rtp_template& rtp() const;
MNCC__PDU__Hello_template& hello();
const MNCC__PDU__Hello_template& hello() const;
boolean ischosen(MNCC__MsgUnion::union_selection_type checked_selection) const;
void log() const;
void log_match(const MNCC__MsgUnion& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
};

class MNCC__PDU : public Base_Type {
  MNCC__MsgType field_msg__type;
  MNCC__MsgUnion field_u;
public:
  MNCC__PDU();
  MNCC__PDU(const MNCC__MsgType& par_msg__type,
    const MNCC__MsgUnion& par_u);
  MNCC__PDU(const MNCC__PDU& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  MNCC__PDU& operator=(const MNCC__PDU& other_value);
  boolean operator==(const MNCC__PDU& other_value) const;
  inline boolean operator!=(const MNCC__PDU& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

inline boolean is_present() const { return is_bound(); }
  boolean is_value() const;

  inline MNCC__MsgType& msg__type()
    {return field_msg__type;}
  inline const MNCC__MsgType& msg__type() const
    {return field_msg__type;}
  inline MNCC__MsgUnion& u()
    {return field_u;}
  inline const MNCC__MsgUnion& u() const
    {return field_u;}
  inline int size_of() const
    {return 2;}
  void log() const;
  void set_param(Module_Param& param);
  void set_implicit_omit();
  void encode_text(Text_Buf& text_buf) const;
  void decode_text(Text_Buf& text_buf);
void encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...) const;
void decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, TTCN_EncDec::coding_t, ...);
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, int, raw_order_t, boolean no_err=FALSE,int sel_field=-1, boolean first_call=TRUE);
};

class MNCC__PDU_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
MNCC__PDU_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const MNCC__PDU& other_value);
void copy_template(const MNCC__PDU_template& other_value);

public:
MNCC__PDU_template();
MNCC__PDU_template(template_sel other_value);
MNCC__PDU_template(const MNCC__PDU& other_value);
MNCC__PDU_template(const OPTIONAL<MNCC__PDU>& other_value);
MNCC__PDU_template(const MNCC__PDU_template& other_value);
~MNCC__PDU_template();
MNCC__PDU_template& operator=(template_sel other_value);
MNCC__PDU_template& operator=(const MNCC__PDU& other_value);
MNCC__PDU_template& operator=(const OPTIONAL<MNCC__PDU>& other_value);
MNCC__PDU_template& operator=(const MNCC__PDU_template& other_value);
boolean match(const MNCC__PDU& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
MNCC__PDU valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
MNCC__PDU_template& list_item(unsigned int list_index) const;
MNCC__MsgType_template& msg__type();
const MNCC__MsgType_template& msg__type() const;
MNCC__MsgUnion_template& u();
const MNCC__MsgUnion_template& u() const;
int size_of() const;
void log() const;
void log_match(const MNCC__PDU& match_value, boolean legacy = FALSE) const;
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
void set_param(Module_Param& param);
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
};


/* Function prototypes */

extern void int__encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER int__decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void GSM48__bcap__ra_encoder(const GSM48__bcap__ra& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER GSM48__bcap__ra_decoder(OCTETSTRING& input_stream, GSM48__bcap__ra& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void GSM48__bcap__sig__access_encoder(const GSM48__bcap__sig__access& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER GSM48__bcap__sig__access_decoder(OCTETSTRING& input_stream, GSM48__bcap__sig__access& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void GSM48__bcap__user__rate_encoder(const GSM48__bcap__user__rate& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER GSM48__bcap__user__rate_decoder(OCTETSTRING& input_stream, GSM48__bcap__user__rate& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void GSM48__bcap__parity_encoder(const GSM48__bcap__parity& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER GSM48__bcap__parity_decoder(OCTETSTRING& input_stream, GSM48__bcap__parity& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void GSM48__bcap__interm__rate_encoder(const GSM48__bcap__interm__rate& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER GSM48__bcap__interm__rate_decoder(OCTETSTRING& input_stream, GSM48__bcap__interm__rate& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void GSM48__bcap__transp_encoder(const GSM48__bcap__transp& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER GSM48__bcap__transp_decoder(OCTETSTRING& input_stream, GSM48__bcap__transp& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void GSM48__bcap__modem__type_encoder(const GSM48__bcap__modem__type& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER GSM48__bcap__modem__type_decoder(OCTETSTRING& input_stream, GSM48__bcap__modem__type& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__MsgType_encoder(const MNCC__MsgType& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__MsgType_decoder(OCTETSTRING& input_stream, MNCC__MsgType& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bearer__cap__data_rate__adaptation_encoder(const GSM48__bcap__ra& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bearer__cap__data_rate__adaptation_decoder(OCTETSTRING& input_stream, GSM48__bcap__ra& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bearer__cap__data_sig__access_encoder(const GSM48__bcap__sig__access& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bearer__cap__data_sig__access_decoder(OCTETSTRING& input_stream, GSM48__bcap__sig__access& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bearer__cap__data_async_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bearer__cap__data_async_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bearer__cap__data_nr__stop__bits_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bearer__cap__data_nr__stop__bits_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bearer__cap__data_nr__data__bits_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bearer__cap__data_nr__data__bits_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bearer__cap__data_user__rate_encoder(const GSM48__bcap__user__rate& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bearer__cap__data_user__rate_decoder(OCTETSTRING& input_stream, GSM48__bcap__user__rate& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bearer__cap__data_parity_encoder(const GSM48__bcap__parity& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bearer__cap__data_parity_decoder(OCTETSTRING& input_stream, GSM48__bcap__parity& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bearer__cap__data_interm__rate_encoder(const GSM48__bcap__interm__rate& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bearer__cap__data_interm__rate_decoder(OCTETSTRING& input_stream, GSM48__bcap__interm__rate& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bearer__cap__data_transp_encoder(const GSM48__bcap__transp& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bearer__cap__data_transp_decoder(OCTETSTRING& input_stream, GSM48__bcap__transp& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bearer__cap__data_modem__type_encoder(const GSM48__bcap__modem__type& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bearer__cap__data_modem__type_decoder(OCTETSTRING& input_stream, GSM48__bcap__modem__type& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bearer__cap__data_encoder(const MNCC__bearer__cap__data& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bearer__cap__data_decoder(OCTETSTRING& input_stream, MNCC__bearer__cap__data& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__speech__vers_0_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__speech__vers_0_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__speech__vers_encoder(const MNCC__speech__vers& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__speech__vers_decoder(OCTETSTRING& input_stream, MNCC__speech__vers& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bearer__cap_transfer_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bearer__cap_transfer_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bearer__cap_mode_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bearer__cap_mode_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bearer__cap_coding_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bearer__cap_coding_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bearer__cap_radio_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bearer__cap_radio_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bearer__cap_speech__ctm_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bearer__cap_speech__ctm_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bearer__cap_speech__ver_encoder(const MNCC__speech__vers& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bearer__cap_speech__ver_decoder(OCTETSTRING& input_stream, MNCC__speech__vers& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bearer__cap_data_encoder(const MNCC__bearer__cap__data& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bearer__cap_data_decoder(OCTETSTRING& input_stream, MNCC__bearer__cap__data& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bearer__cap_encoder(const MNCC__bearer__cap& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bearer__cap_decoder(OCTETSTRING& input_stream, MNCC__bearer__cap& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void GSM48__type__of__number_encoder(const GSM48__type__of__number& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER GSM48__type__of__number_decoder(OCTETSTRING& input_stream, GSM48__type__of__number& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__number_number__type_encoder(const GSM48__type__of__number& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__number_number__type_decoder(OCTETSTRING& input_stream, GSM48__type__of__number& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void GSM48__num__plan__ind_encoder(const GSM48__num__plan__ind& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER GSM48__num__plan__ind_decoder(OCTETSTRING& input_stream, GSM48__num__plan__ind& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__number_plan_encoder(const GSM48__num__plan__ind& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__number_plan_decoder(OCTETSTRING& input_stream, GSM48__num__plan__ind& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void GSM48__present__ind_encoder(const GSM48__present__ind& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER GSM48__present__ind_decoder(OCTETSTRING& input_stream, GSM48__present__ind& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__number_presence_encoder(const GSM48__present__ind& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__number_presence_decoder(OCTETSTRING& input_stream, GSM48__present__ind& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void GSM48__screening__ind_encoder(const GSM48__screening__ind& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER GSM48__screening__ind_decoder(OCTETSTRING& input_stream, GSM48__screening__ind& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__number_screen_encoder(const GSM48__screening__ind& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__number_screen_decoder(OCTETSTRING& input_stream, GSM48__screening__ind& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__number_number_encoder(const CHARSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__number_number_decoder(OCTETSTRING& input_stream, CHARSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__number_encoder(const MNCC__number& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__number_decoder(OCTETSTRING& input_stream, MNCC__number& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void GSM48__cause__coding_encoder(const GSM48__cause__coding& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER GSM48__cause__coding_decoder(OCTETSTRING& input_stream, GSM48__cause__coding& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void GSM48__cause__loc_encoder(const GSM48__cause__loc& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER GSM48__cause__loc_decoder(OCTETSTRING& input_stream, GSM48__cause__loc& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern MNCC__number_template ts__MNCC__number(const CHARSTRING& number, const GSM48__type__of__number& ton, const GSM48__num__plan__ind& npi, const GSM48__present__ind& pres, const GSM48__screening__ind& screen);
extern MNCC__number_template tr__MNCC__number(const CHARSTRING_template& number, const GSM48__type__of__number_template& ton, const GSM48__num__plan__ind_template& npi, const GSM48__present__ind_template& pres, const GSM48__screening__ind_template& screen);
extern void MNCC__cause_location_encoder(const GSM48__cause__loc& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__cause_location_decoder(OCTETSTRING& input_stream, GSM48__cause__loc& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__cause_coding_encoder(const GSM48__cause__coding& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__cause_coding_decoder(OCTETSTRING& input_stream, GSM48__cause__coding& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__cause_rec_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__cause_rec_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__cause_rec__val_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__cause_rec__val_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__cause_val_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__cause_val_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__cause_diag_encoder(const OCTETSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__cause_diag_decoder(OCTETSTRING& input_stream, OCTETSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__cause_encoder(const MNCC__cause& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__cause_decoder(OCTETSTRING& input_stream, MNCC__cause& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern MNCC__cause_template ts__MNCC__cause(const INTEGER& val, const GSM48__cause__loc& loc, const GSM48__cause__coding& coding, const OCTETSTRING& diag);
extern void MNCC__useruser_proto_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__useruser_proto_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__useruser_info_encoder(const CHARSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__useruser_info_decoder(OCTETSTRING& input_stream, CHARSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__useruser_encoder(const MNCC__useruser& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__useruser_decoder(OCTETSTRING& input_stream, MNCC__useruser& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__progress_coding_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__progress_coding_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__progress_location_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__progress_location_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__progress_descr_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__progress_descr_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__progress_encoder(const MNCC__progress& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__progress_decoder(OCTETSTRING& input_stream, MNCC__progress& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__cccap_dtmf_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__cccap_dtmf_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__cccap_pcp_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__cccap_pcp_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__cccap_encoder(const MNCC__cccap& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__cccap_decoder(OCTETSTRING& input_stream, MNCC__cccap& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__notify_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__notify_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__keypad_encoder(const CHARSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__keypad_decoder(OCTETSTRING& input_stream, CHARSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__bcap_encoder(const MNCC__bcap& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__bcap_decoder(OCTETSTRING& input_stream, MNCC__bcap& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_callref_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_callref_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_clir__sup_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_clir__sup_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_clir__inv_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_clir__inv_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_more_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_more_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_notify_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_notify_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_imsi_encoder(const CHARSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_imsi_decoder(OCTETSTRING& input_stream, CHARSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_lchan__type_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_lchan__type_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_lchan__mode_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_lchan__mode_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_bearer__cap_encoder(const MNCC__bearer__cap& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_bearer__cap_decoder(OCTETSTRING& input_stream, MNCC__bearer__cap& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_called_encoder(const MNCC__number& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_called_decoder(OCTETSTRING& input_stream, MNCC__number& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_calling_encoder(const MNCC__number& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_calling_decoder(OCTETSTRING& input_stream, MNCC__number& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_redirecting_encoder(const MNCC__number& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_redirecting_decoder(OCTETSTRING& input_stream, MNCC__number& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_connected_encoder(const MNCC__number& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_connected_decoder(OCTETSTRING& input_stream, MNCC__number& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_cause_encoder(const MNCC__cause& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_cause_decoder(OCTETSTRING& input_stream, MNCC__cause& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_progress_encoder(const MNCC__progress& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_progress_decoder(OCTETSTRING& input_stream, MNCC__progress& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_useruser_encoder(const MNCC__useruser& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_useruser_decoder(OCTETSTRING& input_stream, MNCC__useruser& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_facility_encoder(const CHARSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_facility_decoder(OCTETSTRING& input_stream, CHARSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_cccap_encoder(const MNCC__cccap& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_cccap_decoder(OCTETSTRING& input_stream, MNCC__cccap& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_ssversion_encoder(const CHARSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_ssversion_decoder(OCTETSTRING& input_stream, CHARSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_signal_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_signal_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_keypad_encoder(const CHARSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_keypad_decoder(OCTETSTRING& input_stream, CHARSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_emergency_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_emergency_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Signal_encoder(const MNCC__PDU__Signal& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Signal_decoder(OCTETSTRING& input_stream, MNCC__PDU__Signal& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Data_callref_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Data_callref_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Data_data_encoder(const OCTETSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Data_data_decoder(OCTETSTRING& input_stream, OCTETSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Data_encoder(const MNCC__PDU__Data& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Data_decoder(OCTETSTRING& input_stream, MNCC__PDU__Data& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Rtp_callref_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Rtp_callref_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Rtp_ip_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Rtp_ip_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Rtp_rtp__port_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Rtp_rtp__port_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Rtp_payload__type_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Rtp_payload__type_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Rtp_payload__msg__type_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Rtp_payload__msg__type_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Rtp_encoder(const MNCC__PDU__Rtp& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Rtp_decoder(OCTETSTRING& input_stream, MNCC__PDU__Rtp& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Hello_version_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Hello_version_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Hello_mncc__size_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Hello_mncc__size_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Hello_data__frame__size_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Hello_data__frame__size_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Hello_called__offset_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Hello_called__offset_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Hello_signal__offset_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Hello_signal__offset_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Hello_emergency__offset_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Hello_emergency__offset_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Hello_lchan__type__offset_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Hello_lchan__type__offset_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU__Hello_encoder(const MNCC__PDU__Hello& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU__Hello_decoder(OCTETSTRING& input_stream, MNCC__PDU__Hello& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__MsgUnion_signal_encoder(const MNCC__PDU__Signal& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__MsgUnion_signal_decoder(OCTETSTRING& input_stream, MNCC__PDU__Signal& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__MsgUnion_data_encoder(const MNCC__PDU__Data& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__MsgUnion_data_decoder(OCTETSTRING& input_stream, MNCC__PDU__Data& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__MsgUnion_rtp_encoder(const MNCC__PDU__Rtp& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__MsgUnion_rtp_decoder(OCTETSTRING& input_stream, MNCC__PDU__Rtp& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__MsgUnion_hello_encoder(const MNCC__PDU__Hello& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__MsgUnion_hello_decoder(OCTETSTRING& input_stream, MNCC__PDU__Hello& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__MsgUnion_encoder(const MNCC__MsgUnion& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__MsgUnion_decoder(OCTETSTRING& input_stream, MNCC__MsgUnion& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU_msg__type_encoder(const MNCC__MsgType& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU_msg__type_decoder(OCTETSTRING& input_stream, MNCC__MsgType& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU_u_encoder(const MNCC__MsgUnion& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU_u_decoder(OCTETSTRING& input_stream, MNCC__MsgUnion& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void MNCC__PDU_encoder(const MNCC__PDU& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER MNCC__PDU_decoder(OCTETSTRING& input_stream, MNCC__PDU& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern OCTETSTRING enc__MNCC__PDU(const MNCC__PDU& pdu);
extern MNCC__PDU dec__MNCC__PDU(const OCTETSTRING& stream);
extern MNCC__PDU_template ts__MNCC__HELLO(const INTEGER& version);
extern MNCC__PDU_template ts__MNCC__Sign(const MNCC__MsgType& msg__type, const MNCC__PDU__Signal& sign);
extern MNCC__PDU_template ts__MNCC__SIMPLE(const MNCC__MsgType& msg__type, const INTEGER& call__id);
extern MNCC__PDU_template tr__MNCC__SIMPLE(const MNCC__MsgType_template& msg__type, const INTEGER_template& call__id);
extern MNCC__PDU_template ts__MNCC__SETUP__req(const INTEGER& call__id, const CHARSTRING& called, const CHARSTRING& calling, const CHARSTRING& imsi);
extern MNCC__PDU_template tr__MNCC__SETUP__req(const INTEGER_template& call__id, const CHARSTRING_template& called, const CHARSTRING_template& calling, const CHARSTRING_template& imsi);
extern MNCC__PDU_template ts__MNCC__SETUP__rsp(const INTEGER& call__id, const CHARSTRING& imsi, const MNCC__number_template& connected);
extern MNCC__PDU_template tr__MNCC__SETUP__rsp(const INTEGER_template& call__id, const CHARSTRING_template& imsi, const MNCC__number_template& connected);
extern MNCC__PDU_template tr__MNCC__SETUP__ind(const INTEGER_template& call__id, const MNCC__number_template& called, const MNCC__number_template& calling, const CHARSTRING_template& imsi);
extern MNCC__PDU_template ts__MNCC__SETUP__ind(const INTEGER& call__id, const MNCC__number& called, const MNCC__number_template& calling, const CHARSTRING_template& imsi, const MNCC__bearer__cap_template& bcap);
extern MNCC__PDU_template ts__MNCC__SETUP__CNF(const INTEGER& call__id, const MNCC__number_template& connected);
extern MNCC__PDU_template tr__MNCC__SETUP__cnf(const INTEGER& call__id, const MNCC__number_template& connected);
extern MNCC__PDU_template tr__MNCC__SETUP__COMPL__req(const INTEGER_template& call__id);
extern MNCC__PDU_template tr__MNCC__SETUP__COMPL__ind(const INTEGER_template& call__id);
extern MNCC__PDU_template ts__MNCC__SETUP__COMPL__ind(const INTEGER& call__id);
extern MNCC__PDU_template tr__MNCC__REJ__req(const INTEGER_template& call__id, const MNCC__cause_template& cause);
extern MNCC__PDU_template ts__MNCC__REJ__ind(const INTEGER& call__id, const MNCC__cause_template& cause);
extern MNCC__PDU_template tr__MNCC__CALL__CONF__ind(const INTEGER_template& call__id, const MNCC__bearer__cap_template& bcap, const MNCC__cause_template& cause, const MNCC__cccap_template& cccap);
extern MNCC__PDU_template ts__MNCC__CALL__CONF__ind(const INTEGER& call__id, const MNCC__bearer__cap_template& bcap, const MNCC__cause_template& cause, const MNCC__cccap_template& cccap);
extern MNCC__PDU_template ts__MNCC__CALL__PROC__req(const INTEGER& call__id, const MNCC__bearer__cap_template& bcap, const MNCC__progress_template& prog, const CHARSTRING_template& fac, const MNCC__cccap_template& cccap);
extern MNCC__PDU_template tr__MNCC__CALL__PROC__req(const INTEGER_template& call__id, const MNCC__bearer__cap_template& bcap, const MNCC__progress_template& prog, const CHARSTRING_template& fac, const MNCC__cccap_template& cccap);
extern MNCC__PDU_template ts__MNCC__PROGRESS__req(const INTEGER& call__id, const MNCC__progress& prog, const MNCC__useruser_template& uu);
extern MNCC__PDU_template ts__MNCC__ALERT__req(const INTEGER& call__id, const MNCC__progress_template& prog, const CHARSTRING_template& fac, const MNCC__useruser_template& uu);
extern MNCC__PDU_template tr__MNCC__ALERT__req(const INTEGER_template& call__id, const MNCC__progress_template& prog, const CHARSTRING_template& fac, const MNCC__useruser_template& uu);
extern MNCC__PDU_template tr__MNCC__ALERT__ind(const INTEGER_template& call__id, const MNCC__progress_template& prog, const CHARSTRING_template& fac, const MNCC__useruser_template& uu);
extern MNCC__PDU_template ts__MNCC__ALERT__ind(const INTEGER& call__id, const MNCC__progress_template& prog, const CHARSTRING_template& fac, const MNCC__useruser_template& uu);
extern MNCC__PDU_template ts__MNCC__NOTIFY__req(const INTEGER& call__id, const INTEGER& notify);
extern MNCC__PDU_template tr__MNCC__NOTIFY__ind(const INTEGER_template& call__id, const INTEGER_template& notify);
extern MNCC__PDU_template tr__MNCC__DISC__ind(const INTEGER_template& call__id, const MNCC__cause_template& cause, const MNCC__progress_template& prog, const CHARSTRING_template& fac, const MNCC__useruser_template& uu);
extern MNCC__PDU_template ts__MNCC__DISC__ind(const INTEGER& call__id, const MNCC__cause_template& cause, const MNCC__progress_template& prog, const CHARSTRING_template& fac, const MNCC__useruser_template& uu);
extern MNCC__PDU_template ts__MNCC__DISC__req(const INTEGER& call__id, const MNCC__cause& cause, const MNCC__progress_template& prog, const CHARSTRING_template& fac, const MNCC__useruser_template& uu);
extern MNCC__PDU_template tr__MNCC__DISC__req(const INTEGER_template& call__id, const MNCC__cause_template& cause, const MNCC__progress_template& prog, const CHARSTRING_template& fac, const MNCC__useruser_template& uu);
extern MNCC__PDU_template tr__MNCC__REL__ind(const INTEGER_template& call__id, const MNCC__cause_template& cause, const CHARSTRING_template& fac, const MNCC__useruser_template& uu);
extern MNCC__PDU_template ts__MNCC__REL__ind(const INTEGER& call__id, const MNCC__cause_template& cause, const CHARSTRING_template& fac, const MNCC__useruser_template& uu);
extern MNCC__PDU_template ts__MNCC__REL__req(const INTEGER& call__id, const MNCC__cause& cause, const CHARSTRING_template& fac, const MNCC__useruser_template& uu);
extern MNCC__PDU_template tr__MNCC__REL__req(const INTEGER_template& call__id, const MNCC__cause_template& cause, const CHARSTRING_template& fac, const MNCC__useruser_template& uu);
extern MNCC__PDU_template tr__MNCC__REL__cnf(const INTEGER_template& call__id, const MNCC__cause_template& cause, const CHARSTRING_template& fac, const MNCC__useruser_template& uu);
extern MNCC__PDU_template ts__MNCC__REL__cnf(const INTEGER& call__id, const MNCC__cause_template& cause, const CHARSTRING_template& fac, const MNCC__useruser_template& uu);
extern MNCC__PDU_template ts__MNCC__FACILITY__req(const INTEGER& call__id, const CHARSTRING& fac);
extern MNCC__PDU_template tr__MNCC__FACILITY__ind(const INTEGER_template& call__id, const CHARSTRING_template& fac);
extern MNCC__PDU_template tr__MNCC__START__DTMF__ind(const INTEGER_template& call__id, const CHARSTRING_template& keypad);
extern MNCC__PDU_template ts__MNCC__START__DTMF__rsp(const INTEGER& call__id, const CHARSTRING& keypad);
extern MNCC__PDU_template ts__MNCC__START__DTMF__rej(const INTEGER& call__id, const MNCC__cause& cause);
extern MNCC__PDU_template tr__MNCC__STOP__DTMF__ind(const INTEGER_template& call__id);
extern MNCC__PDU_template ts__MNCC__STOP__DTMF__rsp(const INTEGER& call__id);
extern MNCC__PDU_template tr__MNCC__MODIFY__ind(const INTEGER_template& call__id, const MNCC__bearer__cap_template& bcap);
extern MNCC__PDU_template ts__MNCC__MODIFY__rsp(const INTEGER& call__id, const MNCC__bearer__cap& bcap);
extern MNCC__PDU_template ts__MNCC__MODIFY__req(const INTEGER& call__id, const MNCC__bearer__cap& bcap);
extern MNCC__PDU_template tr__MNCC__MODIFY__cnf(const INTEGER_template& call__id, const MNCC__bearer__cap_template& bcap);
extern MNCC__PDU_template ts__MNCC__USERINFO__req(const INTEGER& call__id, const MNCC__useruser& uu, const INTEGER& more);
extern MNCC__PDU_template tr__MNCC__USERINFO__ind(const INTEGER_template& call__id, const MNCC__useruser_template& uu, const INTEGER& more);
extern MNCC__PDU_template tr__MNCC__HOLD__ind(const INTEGER_template& call__id);
extern MNCC__PDU_template ts__MNCC__HOLD__cnf(const INTEGER& call__id);
extern MNCC__PDU_template ts__MNCC__HOLD__rej(const INTEGER& call__id, const MNCC__cause& cause);
extern MNCC__PDU_template tr__MNCC__RETRIEVE__ind(const INTEGER_template& call__id);
extern MNCC__PDU_template ts__MNCC__RETRIEVE__cnf(const INTEGER& call__id);
extern MNCC__PDU_template ts__MNCC__RETRIEVE__rej(const INTEGER& call__id, const MNCC__cause& cause);
extern MNCC__PDU_template ts__MNCC__SIMPLE__RTP(const MNCC__MsgType& msg__type, const INTEGER& call__id);
extern MNCC__PDU_template ts__MNCC__RTP__CREATE(const INTEGER& call__id);
extern MNCC__PDU_template tr__MNCC__RTP__CREATE(const INTEGER_template& call__id);
extern MNCC__PDU_template ts__MNCC__RTP__CONNECT(const INTEGER& call__id, const INTEGER& ip, const INTEGER& rtp__port, const INTEGER& pt);
extern MNCC__PDU_template tr__MNCC__RTP__CONNECT(const INTEGER_template& call__id, const INTEGER_template& ip, const INTEGER_template& rtp__port, const INTEGER_template& pt);
extern MNCC__PDU_template ts__MNCC__RTP__FREE(const INTEGER& call__id);
extern INTEGER f__mncc__get__call__id(const MNCC__PDU& pdu);

/* Global variable declarations */

extern const TTCN_RAWdescriptor_t int__raw_;
extern const XERdescriptor_t int__xer_;
extern const TTCN_JSONdescriptor_t int__json_;
extern const TTCN_Typedescriptor_t int__descr_;
extern UNIVERSAL_CHARSTRING int__default_coding;
extern const TTCN_RAWdescriptor_t GSM48__bcap__ra_raw_;
extern const TTCN_Typedescriptor_t GSM48__bcap__ra_descr_;
extern UNIVERSAL_CHARSTRING GSM48__bcap__ra_default_coding;
extern const TTCN_RAWdescriptor_t GSM48__bcap__sig__access_raw_;
extern const TTCN_Typedescriptor_t GSM48__bcap__sig__access_descr_;
extern UNIVERSAL_CHARSTRING GSM48__bcap__sig__access_default_coding;
extern const TTCN_RAWdescriptor_t GSM48__bcap__user__rate_raw_;
extern const TTCN_Typedescriptor_t GSM48__bcap__user__rate_descr_;
extern UNIVERSAL_CHARSTRING GSM48__bcap__user__rate_default_coding;
extern const TTCN_RAWdescriptor_t GSM48__bcap__parity_raw_;
extern const TTCN_Typedescriptor_t GSM48__bcap__parity_descr_;
extern UNIVERSAL_CHARSTRING GSM48__bcap__parity_default_coding;
extern const TTCN_RAWdescriptor_t GSM48__bcap__interm__rate_raw_;
extern const TTCN_Typedescriptor_t GSM48__bcap__interm__rate_descr_;
extern UNIVERSAL_CHARSTRING GSM48__bcap__interm__rate_default_coding;
extern const TTCN_RAWdescriptor_t GSM48__bcap__transp_raw_;
extern const TTCN_Typedescriptor_t GSM48__bcap__transp_descr_;
extern UNIVERSAL_CHARSTRING GSM48__bcap__transp_default_coding;
extern const TTCN_RAWdescriptor_t GSM48__bcap__modem__type_raw_;
extern const TTCN_Typedescriptor_t GSM48__bcap__modem__type_descr_;
extern UNIVERSAL_CHARSTRING GSM48__bcap__modem__type_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__MsgType_raw_;
extern const TTCN_Typedescriptor_t MNCC__MsgType_descr_;
extern UNIVERSAL_CHARSTRING MNCC__MsgType_default_coding;
extern const INTEGER& GSM__MAX__FACILITY;
extern const INTEGER& GSM__MAX__SSVERSION;
extern const INTEGER& GSM__MAX__USERUSER;
extern const TTCN_RAWdescriptor_t MNCC__bearer__cap__data_rate__adaptation_raw_;
extern const TTCN_Typedescriptor_t MNCC__bearer__cap__data_rate__adaptation_descr_;
extern UNIVERSAL_CHARSTRING MNCC__bearer__cap__data_rate__adaptation_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__bearer__cap__data_sig__access_raw_;
extern const TTCN_Typedescriptor_t MNCC__bearer__cap__data_sig__access_descr_;
extern UNIVERSAL_CHARSTRING MNCC__bearer__cap__data_sig__access_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__bearer__cap__data_async_raw_;
extern const XERdescriptor_t MNCC__bearer__cap__data_async_xer_;
extern const TTCN_JSONdescriptor_t MNCC__bearer__cap__data_async_json_;
extern const TTCN_OERdescriptor_t MNCC__bearer__cap__data_async_oer_;
extern const TTCN_Typedescriptor_t MNCC__bearer__cap__data_async_descr_;
extern UNIVERSAL_CHARSTRING MNCC__bearer__cap__data_async_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__bearer__cap__data_nr__stop__bits_raw_;
extern const XERdescriptor_t MNCC__bearer__cap__data_nr__stop__bits_xer_;
extern const TTCN_JSONdescriptor_t MNCC__bearer__cap__data_nr__stop__bits_json_;
extern const TTCN_OERdescriptor_t MNCC__bearer__cap__data_nr__stop__bits_oer_;
extern const TTCN_Typedescriptor_t MNCC__bearer__cap__data_nr__stop__bits_descr_;
extern UNIVERSAL_CHARSTRING MNCC__bearer__cap__data_nr__stop__bits_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__bearer__cap__data_nr__data__bits_raw_;
extern const XERdescriptor_t MNCC__bearer__cap__data_nr__data__bits_xer_;
extern const TTCN_JSONdescriptor_t MNCC__bearer__cap__data_nr__data__bits_json_;
extern const TTCN_OERdescriptor_t MNCC__bearer__cap__data_nr__data__bits_oer_;
extern const TTCN_Typedescriptor_t MNCC__bearer__cap__data_nr__data__bits_descr_;
extern UNIVERSAL_CHARSTRING MNCC__bearer__cap__data_nr__data__bits_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__bearer__cap__data_user__rate_raw_;
extern const TTCN_Typedescriptor_t MNCC__bearer__cap__data_user__rate_descr_;
extern UNIVERSAL_CHARSTRING MNCC__bearer__cap__data_user__rate_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__bearer__cap__data_parity_raw_;
extern const TTCN_Typedescriptor_t MNCC__bearer__cap__data_parity_descr_;
extern UNIVERSAL_CHARSTRING MNCC__bearer__cap__data_parity_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__bearer__cap__data_interm__rate_raw_;
extern const TTCN_Typedescriptor_t MNCC__bearer__cap__data_interm__rate_descr_;
extern UNIVERSAL_CHARSTRING MNCC__bearer__cap__data_interm__rate_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__bearer__cap__data_transp_raw_;
extern const TTCN_Typedescriptor_t MNCC__bearer__cap__data_transp_descr_;
extern UNIVERSAL_CHARSTRING MNCC__bearer__cap__data_transp_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__bearer__cap__data_modem__type_raw_;
extern const TTCN_Typedescriptor_t MNCC__bearer__cap__data_modem__type_descr_;
extern UNIVERSAL_CHARSTRING MNCC__bearer__cap__data_modem__type_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__bearer__cap__data_raw_;
extern const TTCN_Typedescriptor_t MNCC__bearer__cap__data_descr_;
extern UNIVERSAL_CHARSTRING MNCC__bearer__cap__data_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__speech__vers_raw_;
extern const TTCN_Typedescriptor_t MNCC__speech__vers_descr_;
extern const TTCN_RAWdescriptor_t MNCC__speech__vers_0_raw_;
extern const XERdescriptor_t MNCC__speech__vers_0_xer_;
extern const TTCN_JSONdescriptor_t MNCC__speech__vers_0_json_;
extern const TTCN_OERdescriptor_t MNCC__speech__vers_0_oer_;
extern const TTCN_Typedescriptor_t MNCC__speech__vers_0_descr_;
extern UNIVERSAL_CHARSTRING MNCC__speech__vers_0_default_coding;
extern UNIVERSAL_CHARSTRING MNCC__speech__vers_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__bearer__cap_transfer_raw_;
extern const XERdescriptor_t MNCC__bearer__cap_transfer_xer_;
extern const TTCN_JSONdescriptor_t MNCC__bearer__cap_transfer_json_;
extern const TTCN_OERdescriptor_t MNCC__bearer__cap_transfer_oer_;
extern const TTCN_Typedescriptor_t MNCC__bearer__cap_transfer_descr_;
extern UNIVERSAL_CHARSTRING MNCC__bearer__cap_transfer_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__bearer__cap_mode_raw_;
extern const XERdescriptor_t MNCC__bearer__cap_mode_xer_;
extern const TTCN_JSONdescriptor_t MNCC__bearer__cap_mode_json_;
extern const TTCN_OERdescriptor_t MNCC__bearer__cap_mode_oer_;
extern const TTCN_Typedescriptor_t MNCC__bearer__cap_mode_descr_;
extern UNIVERSAL_CHARSTRING MNCC__bearer__cap_mode_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__bearer__cap_coding_raw_;
extern const XERdescriptor_t MNCC__bearer__cap_coding_xer_;
extern const TTCN_JSONdescriptor_t MNCC__bearer__cap_coding_json_;
extern const TTCN_OERdescriptor_t MNCC__bearer__cap_coding_oer_;
extern const TTCN_Typedescriptor_t MNCC__bearer__cap_coding_descr_;
extern UNIVERSAL_CHARSTRING MNCC__bearer__cap_coding_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__bearer__cap_radio_raw_;
extern const XERdescriptor_t MNCC__bearer__cap_radio_xer_;
extern const TTCN_JSONdescriptor_t MNCC__bearer__cap_radio_json_;
extern const TTCN_OERdescriptor_t MNCC__bearer__cap_radio_oer_;
extern const TTCN_Typedescriptor_t MNCC__bearer__cap_radio_descr_;
extern UNIVERSAL_CHARSTRING MNCC__bearer__cap_radio_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__bearer__cap_speech__ctm_raw_;
extern const XERdescriptor_t MNCC__bearer__cap_speech__ctm_xer_;
extern const TTCN_JSONdescriptor_t MNCC__bearer__cap_speech__ctm_json_;
extern const TTCN_OERdescriptor_t MNCC__bearer__cap_speech__ctm_oer_;
extern const TTCN_Typedescriptor_t MNCC__bearer__cap_speech__ctm_descr_;
extern UNIVERSAL_CHARSTRING MNCC__bearer__cap_speech__ctm_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__bearer__cap_speech__ver_raw_;
extern const TTCN_Typedescriptor_t MNCC__bearer__cap_speech__ver_descr_;
extern UNIVERSAL_CHARSTRING MNCC__bearer__cap_speech__ver_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__bearer__cap_raw_;
extern const TTCN_Typedescriptor_t MNCC__bearer__cap_descr_;
extern const TTCN_RAWdescriptor_t MNCC__bearer__cap_data_raw_;
extern const TTCN_Typedescriptor_t MNCC__bearer__cap_data_descr_;
extern UNIVERSAL_CHARSTRING MNCC__bearer__cap_data_default_coding;
extern UNIVERSAL_CHARSTRING MNCC__bearer__cap_default_coding;
extern const MNCC__bearer__cap_template& ts__MNCC__bcap__voice;
extern const TTCN_RAWdescriptor_t GSM48__type__of__number_raw_;
extern const TTCN_Typedescriptor_t GSM48__type__of__number_descr_;
extern UNIVERSAL_CHARSTRING GSM48__type__of__number_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__number_number__type_raw_;
extern const TTCN_Typedescriptor_t MNCC__number_number__type_descr_;
extern UNIVERSAL_CHARSTRING MNCC__number_number__type_default_coding;
extern const TTCN_RAWdescriptor_t GSM48__num__plan__ind_raw_;
extern const TTCN_Typedescriptor_t GSM48__num__plan__ind_descr_;
extern UNIVERSAL_CHARSTRING GSM48__num__plan__ind_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__number_plan_raw_;
extern const TTCN_Typedescriptor_t MNCC__number_plan_descr_;
extern UNIVERSAL_CHARSTRING MNCC__number_plan_default_coding;
extern const TTCN_RAWdescriptor_t GSM48__present__ind_raw_;
extern const TTCN_Typedescriptor_t GSM48__present__ind_descr_;
extern UNIVERSAL_CHARSTRING GSM48__present__ind_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__number_presence_raw_;
extern const TTCN_Typedescriptor_t MNCC__number_presence_descr_;
extern UNIVERSAL_CHARSTRING MNCC__number_presence_default_coding;
extern const TTCN_RAWdescriptor_t GSM48__screening__ind_raw_;
extern const TTCN_Typedescriptor_t GSM48__screening__ind_descr_;
extern UNIVERSAL_CHARSTRING GSM48__screening__ind_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__number_screen_raw_;
extern const TTCN_Typedescriptor_t MNCC__number_screen_descr_;
extern UNIVERSAL_CHARSTRING MNCC__number_screen_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__number_number_raw_;
extern const XERdescriptor_t MNCC__number_number_xer_;
extern const TTCN_JSONdescriptor_t MNCC__number_number_json_;
extern const TTCN_Typedescriptor_t MNCC__number_number_descr_;
extern UNIVERSAL_CHARSTRING MNCC__number_number_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__number_raw_;
extern const TTCN_Typedescriptor_t MNCC__number_descr_;
extern UNIVERSAL_CHARSTRING MNCC__number_default_coding;
extern const TTCN_RAWdescriptor_t GSM48__cause__coding_raw_;
extern const TTCN_Typedescriptor_t GSM48__cause__coding_descr_;
extern UNIVERSAL_CHARSTRING GSM48__cause__coding_default_coding;
extern const TTCN_RAWdescriptor_t GSM48__cause__loc_raw_;
extern const TTCN_Typedescriptor_t GSM48__cause__loc_descr_;
extern UNIVERSAL_CHARSTRING GSM48__cause__loc_default_coding;
extern const GSM48__type__of__number& ts__MNCC__number_ton_defval;
extern const GSM48__num__plan__ind& ts__MNCC__number_npi_defval;
extern const GSM48__present__ind& ts__MNCC__number_pres_defval;
extern const GSM48__screening__ind& ts__MNCC__number_screen_defval;
extern const GSM48__type__of__number_template& tr__MNCC__number_ton_defval;
extern const GSM48__num__plan__ind_template& tr__MNCC__number_npi_defval;
extern const GSM48__present__ind_template& tr__MNCC__number_pres_defval;
extern const GSM48__screening__ind_template& tr__MNCC__number_screen_defval;
extern const TTCN_RAWdescriptor_t MNCC__cause_location_raw_;
extern const TTCN_Typedescriptor_t MNCC__cause_location_descr_;
extern UNIVERSAL_CHARSTRING MNCC__cause_location_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__cause_coding_raw_;
extern const TTCN_Typedescriptor_t MNCC__cause_coding_descr_;
extern UNIVERSAL_CHARSTRING MNCC__cause_coding_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__cause_rec_raw_;
extern const XERdescriptor_t MNCC__cause_rec_xer_;
extern const TTCN_JSONdescriptor_t MNCC__cause_rec_json_;
extern const TTCN_OERdescriptor_t MNCC__cause_rec_oer_;
extern const TTCN_Typedescriptor_t MNCC__cause_rec_descr_;
extern UNIVERSAL_CHARSTRING MNCC__cause_rec_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__cause_rec__val_raw_;
extern const XERdescriptor_t MNCC__cause_rec__val_xer_;
extern const TTCN_JSONdescriptor_t MNCC__cause_rec__val_json_;
extern const TTCN_OERdescriptor_t MNCC__cause_rec__val_oer_;
extern const TTCN_Typedescriptor_t MNCC__cause_rec__val_descr_;
extern UNIVERSAL_CHARSTRING MNCC__cause_rec__val_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__cause_val_raw_;
extern const XERdescriptor_t MNCC__cause_val_xer_;
extern const TTCN_JSONdescriptor_t MNCC__cause_val_json_;
extern const TTCN_OERdescriptor_t MNCC__cause_val_oer_;
extern const TTCN_Typedescriptor_t MNCC__cause_val_descr_;
extern UNIVERSAL_CHARSTRING MNCC__cause_val_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__cause_diag_raw_;
extern const XERdescriptor_t MNCC__cause_diag_xer_;
extern const TTCN_JSONdescriptor_t MNCC__cause_diag_json_;
extern const TTCN_OERdescriptor_t MNCC__cause_diag_oer_;
extern const TTCN_Typedescriptor_t MNCC__cause_diag_descr_;
extern UNIVERSAL_CHARSTRING MNCC__cause_diag_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__cause_raw_;
extern const TTCN_Typedescriptor_t MNCC__cause_descr_;
extern UNIVERSAL_CHARSTRING MNCC__cause_default_coding;
extern const GSM48__cause__loc& ts__MNCC__cause_loc_defval;
extern const GSM48__cause__coding& ts__MNCC__cause_coding_defval;
extern const OCTETSTRING& ts__MNCC__cause_diag_defval;
extern const TTCN_RAWdescriptor_t MNCC__useruser_proto_raw_;
extern const XERdescriptor_t MNCC__useruser_proto_xer_;
extern const TTCN_JSONdescriptor_t MNCC__useruser_proto_json_;
extern const TTCN_OERdescriptor_t MNCC__useruser_proto_oer_;
extern const TTCN_Typedescriptor_t MNCC__useruser_proto_descr_;
extern UNIVERSAL_CHARSTRING MNCC__useruser_proto_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__useruser_info_raw_;
extern const XERdescriptor_t MNCC__useruser_info_xer_;
extern const TTCN_JSONdescriptor_t MNCC__useruser_info_json_;
extern const TTCN_Typedescriptor_t MNCC__useruser_info_descr_;
extern UNIVERSAL_CHARSTRING MNCC__useruser_info_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__useruser_raw_;
extern const TTCN_Typedescriptor_t MNCC__useruser_descr_;
extern UNIVERSAL_CHARSTRING MNCC__useruser_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__progress_coding_raw_;
extern const XERdescriptor_t MNCC__progress_coding_xer_;
extern const TTCN_JSONdescriptor_t MNCC__progress_coding_json_;
extern const TTCN_OERdescriptor_t MNCC__progress_coding_oer_;
extern const TTCN_Typedescriptor_t MNCC__progress_coding_descr_;
extern UNIVERSAL_CHARSTRING MNCC__progress_coding_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__progress_location_raw_;
extern const XERdescriptor_t MNCC__progress_location_xer_;
extern const TTCN_JSONdescriptor_t MNCC__progress_location_json_;
extern const TTCN_OERdescriptor_t MNCC__progress_location_oer_;
extern const TTCN_Typedescriptor_t MNCC__progress_location_descr_;
extern UNIVERSAL_CHARSTRING MNCC__progress_location_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__progress_descr_raw_;
extern const XERdescriptor_t MNCC__progress_descr_xer_;
extern const TTCN_JSONdescriptor_t MNCC__progress_descr_json_;
extern const TTCN_OERdescriptor_t MNCC__progress_descr_oer_;
extern const TTCN_Typedescriptor_t MNCC__progress_descr_descr_;
extern UNIVERSAL_CHARSTRING MNCC__progress_descr_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__progress_raw_;
extern const TTCN_Typedescriptor_t MNCC__progress_descr_;
extern UNIVERSAL_CHARSTRING MNCC__progress_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__cccap_dtmf_raw_;
extern const XERdescriptor_t MNCC__cccap_dtmf_xer_;
extern const TTCN_JSONdescriptor_t MNCC__cccap_dtmf_json_;
extern const TTCN_OERdescriptor_t MNCC__cccap_dtmf_oer_;
extern const TTCN_Typedescriptor_t MNCC__cccap_dtmf_descr_;
extern UNIVERSAL_CHARSTRING MNCC__cccap_dtmf_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__cccap_pcp_raw_;
extern const XERdescriptor_t MNCC__cccap_pcp_xer_;
extern const TTCN_JSONdescriptor_t MNCC__cccap_pcp_json_;
extern const TTCN_OERdescriptor_t MNCC__cccap_pcp_oer_;
extern const TTCN_Typedescriptor_t MNCC__cccap_pcp_descr_;
extern UNIVERSAL_CHARSTRING MNCC__cccap_pcp_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__cccap_raw_;
extern const TTCN_Typedescriptor_t MNCC__cccap_descr_;
extern UNIVERSAL_CHARSTRING MNCC__cccap_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__notify_raw_;
extern const XERdescriptor_t MNCC__notify_xer_;
extern const TTCN_JSONdescriptor_t MNCC__notify_json_;
extern const TTCN_OERdescriptor_t MNCC__notify_oer_;
extern const TTCN_Typedescriptor_t MNCC__notify_descr_;
extern UNIVERSAL_CHARSTRING MNCC__notify_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__keypad_raw_;
extern const XERdescriptor_t MNCC__keypad_xer_;
extern const TTCN_JSONdescriptor_t MNCC__keypad_json_;
extern const TTCN_Typedescriptor_t MNCC__keypad_descr_;
extern UNIVERSAL_CHARSTRING MNCC__keypad_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__bcap_raw_;
extern const TTCN_Typedescriptor_t MNCC__bcap_descr_;
extern UNIVERSAL_CHARSTRING MNCC__bcap_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_callref_raw_;
extern const XERdescriptor_t MNCC__PDU__Signal_callref_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Signal_callref_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Signal_callref_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_callref_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_callref_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_clir__sup_raw_;
extern const XERdescriptor_t MNCC__PDU__Signal_clir__sup_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Signal_clir__sup_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Signal_clir__sup_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_clir__sup_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_clir__sup_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_clir__inv_raw_;
extern const XERdescriptor_t MNCC__PDU__Signal_clir__inv_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Signal_clir__inv_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Signal_clir__inv_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_clir__inv_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_clir__inv_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_more_raw_;
extern const XERdescriptor_t MNCC__PDU__Signal_more_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Signal_more_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Signal_more_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_more_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_more_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_notify_raw_;
extern const XERdescriptor_t MNCC__PDU__Signal_notify_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Signal_notify_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Signal_notify_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_notify_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_notify_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_imsi_raw_;
extern const XERdescriptor_t MNCC__PDU__Signal_imsi_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Signal_imsi_json_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_imsi_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_imsi_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_lchan__type_raw_;
extern const XERdescriptor_t MNCC__PDU__Signal_lchan__type_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Signal_lchan__type_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Signal_lchan__type_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_lchan__type_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_lchan__type_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_lchan__mode_raw_;
extern const XERdescriptor_t MNCC__PDU__Signal_lchan__mode_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Signal_lchan__mode_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Signal_lchan__mode_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_lchan__mode_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_lchan__mode_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_raw_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_descr_;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_bearer__cap_raw_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_bearer__cap_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_bearer__cap_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_called_raw_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_called_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_called_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_calling_raw_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_calling_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_calling_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_redirecting_raw_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_redirecting_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_redirecting_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_connected_raw_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_connected_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_connected_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_cause_raw_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_cause_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_cause_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_progress_raw_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_progress_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_progress_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_useruser_raw_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_useruser_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_useruser_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_facility_raw_;
extern const XERdescriptor_t MNCC__PDU__Signal_facility_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Signal_facility_json_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_facility_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_facility_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_cccap_raw_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_cccap_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_cccap_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_ssversion_raw_;
extern const XERdescriptor_t MNCC__PDU__Signal_ssversion_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Signal_ssversion_json_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_ssversion_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_ssversion_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_signal_raw_;
extern const XERdescriptor_t MNCC__PDU__Signal_signal_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Signal_signal_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Signal_signal_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_signal_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_signal_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_keypad_raw_;
extern const XERdescriptor_t MNCC__PDU__Signal_keypad_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Signal_keypad_json_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_keypad_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_keypad_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Signal_emergency_raw_;
extern const XERdescriptor_t MNCC__PDU__Signal_emergency_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Signal_emergency_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Signal_emergency_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Signal_emergency_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_emergency_default_coding;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Signal_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Data_callref_raw_;
extern const XERdescriptor_t MNCC__PDU__Data_callref_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Data_callref_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Data_callref_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Data_callref_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Data_callref_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Data_data_raw_;
extern const XERdescriptor_t MNCC__PDU__Data_data_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Data_data_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Data_data_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Data_data_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Data_data_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Data_raw_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Data_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Data_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Rtp_callref_raw_;
extern const XERdescriptor_t MNCC__PDU__Rtp_callref_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Rtp_callref_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Rtp_callref_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Rtp_callref_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Rtp_callref_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Rtp_ip_raw_;
extern const XERdescriptor_t MNCC__PDU__Rtp_ip_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Rtp_ip_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Rtp_ip_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Rtp_ip_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Rtp_ip_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Rtp_rtp__port_raw_;
extern const XERdescriptor_t MNCC__PDU__Rtp_rtp__port_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Rtp_rtp__port_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Rtp_rtp__port_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Rtp_rtp__port_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Rtp_rtp__port_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Rtp_payload__type_raw_;
extern const XERdescriptor_t MNCC__PDU__Rtp_payload__type_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Rtp_payload__type_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Rtp_payload__type_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Rtp_payload__type_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Rtp_payload__type_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Rtp_payload__msg__type_raw_;
extern const XERdescriptor_t MNCC__PDU__Rtp_payload__msg__type_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Rtp_payload__msg__type_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Rtp_payload__msg__type_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Rtp_payload__msg__type_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Rtp_payload__msg__type_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Rtp_raw_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Rtp_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Rtp_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Hello_version_raw_;
extern const XERdescriptor_t MNCC__PDU__Hello_version_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Hello_version_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Hello_version_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Hello_version_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Hello_version_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Hello_mncc__size_raw_;
extern const XERdescriptor_t MNCC__PDU__Hello_mncc__size_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Hello_mncc__size_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Hello_mncc__size_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Hello_mncc__size_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Hello_mncc__size_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Hello_data__frame__size_raw_;
extern const XERdescriptor_t MNCC__PDU__Hello_data__frame__size_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Hello_data__frame__size_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Hello_data__frame__size_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Hello_data__frame__size_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Hello_data__frame__size_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Hello_called__offset_raw_;
extern const XERdescriptor_t MNCC__PDU__Hello_called__offset_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Hello_called__offset_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Hello_called__offset_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Hello_called__offset_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Hello_called__offset_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Hello_signal__offset_raw_;
extern const XERdescriptor_t MNCC__PDU__Hello_signal__offset_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Hello_signal__offset_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Hello_signal__offset_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Hello_signal__offset_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Hello_signal__offset_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Hello_emergency__offset_raw_;
extern const XERdescriptor_t MNCC__PDU__Hello_emergency__offset_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Hello_emergency__offset_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Hello_emergency__offset_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Hello_emergency__offset_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Hello_emergency__offset_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Hello_lchan__type__offset_raw_;
extern const XERdescriptor_t MNCC__PDU__Hello_lchan__type__offset_xer_;
extern const TTCN_JSONdescriptor_t MNCC__PDU__Hello_lchan__type__offset_json_;
extern const TTCN_OERdescriptor_t MNCC__PDU__Hello_lchan__type__offset_oer_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Hello_lchan__type__offset_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Hello_lchan__type__offset_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU__Hello_raw_;
extern const TTCN_Typedescriptor_t MNCC__PDU__Hello_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU__Hello_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__MsgUnion_raw_;
extern const TTCN_Typedescriptor_t MNCC__MsgUnion_descr_;
extern const TTCN_RAWdescriptor_t MNCC__MsgUnion_signal_raw_;
extern const TTCN_Typedescriptor_t MNCC__MsgUnion_signal_descr_;
extern UNIVERSAL_CHARSTRING MNCC__MsgUnion_signal_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__MsgUnion_data_raw_;
extern const TTCN_Typedescriptor_t MNCC__MsgUnion_data_descr_;
extern UNIVERSAL_CHARSTRING MNCC__MsgUnion_data_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__MsgUnion_rtp_raw_;
extern const TTCN_Typedescriptor_t MNCC__MsgUnion_rtp_descr_;
extern UNIVERSAL_CHARSTRING MNCC__MsgUnion_rtp_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__MsgUnion_hello_raw_;
extern const TTCN_Typedescriptor_t MNCC__MsgUnion_hello_descr_;
extern UNIVERSAL_CHARSTRING MNCC__MsgUnion_hello_default_coding;
extern UNIVERSAL_CHARSTRING MNCC__MsgUnion_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU_msg__type_raw_;
extern const TTCN_Typedescriptor_t MNCC__PDU_msg__type_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU_msg__type_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU_u_raw_;
extern const TTCN_Typedescriptor_t MNCC__PDU_u_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU_u_default_coding;
extern const TTCN_RAWdescriptor_t MNCC__PDU_raw_;
extern const TTCN_Typedescriptor_t MNCC__PDU_descr_;
extern UNIVERSAL_CHARSTRING MNCC__PDU_default_coding;
extern const INTEGER& ts__MNCC__HELLO_version_defval;
extern const CHARSTRING& ts__MNCC__SETUP__req_imsi_defval;
extern const INTEGER_template& tr__MNCC__SETUP__req_call__id_defval;
extern const CHARSTRING_template& tr__MNCC__SETUP__req_called_defval;
extern const CHARSTRING_template& tr__MNCC__SETUP__req_calling_defval;
extern const CHARSTRING_template& tr__MNCC__SETUP__req_imsi_defval;
extern const CHARSTRING& ts__MNCC__SETUP__rsp_imsi_defval;
extern const MNCC__number_template& ts__MNCC__SETUP__rsp_connected_defval;
extern const CHARSTRING_template& tr__MNCC__SETUP__rsp_imsi_defval;
extern const MNCC__number_template& tr__MNCC__SETUP__rsp_connected_defval;
extern const INTEGER_template& tr__MNCC__SETUP__ind_call__id_defval;
extern const MNCC__number_template& tr__MNCC__SETUP__ind_called_defval;
extern const MNCC__number_template& tr__MNCC__SETUP__ind_calling_defval;
extern const CHARSTRING_template& tr__MNCC__SETUP__ind_imsi_defval;
extern const MNCC__number_template& ts__MNCC__SETUP__ind_calling_defval;
extern const CHARSTRING_template& ts__MNCC__SETUP__ind_imsi_defval;
extern const MNCC__bearer__cap_template& ts__MNCC__SETUP__ind_bcap_defval;
extern const MNCC__number_template& ts__MNCC__SETUP__CNF_connected_defval;
extern const MNCC__number_template& tr__MNCC__SETUP__cnf_connected_defval;
extern const INTEGER_template& tr__MNCC__SETUP__COMPL__ind_call__id_defval;
extern const MNCC__cause_template& tr__MNCC__REJ__req_cause_defval;
extern const MNCC__cause_template& ts__MNCC__REJ__ind_cause_defval;
extern const MNCC__bearer__cap_template& tr__MNCC__CALL__CONF__ind_bcap_defval;
extern const MNCC__cause_template& tr__MNCC__CALL__CONF__ind_cause_defval;
extern const MNCC__cccap_template& tr__MNCC__CALL__CONF__ind_cccap_defval;
extern const MNCC__bearer__cap_template& ts__MNCC__CALL__CONF__ind_bcap_defval;
extern const MNCC__cause_template& ts__MNCC__CALL__CONF__ind_cause_defval;
extern const MNCC__cccap_template& ts__MNCC__CALL__CONF__ind_cccap_defval;
extern const MNCC__bearer__cap_template& ts__MNCC__CALL__PROC__req_bcap_defval;
extern const MNCC__progress_template& ts__MNCC__CALL__PROC__req_prog_defval;
extern const CHARSTRING_template& ts__MNCC__CALL__PROC__req_fac_defval;
extern const MNCC__cccap_template& ts__MNCC__CALL__PROC__req_cccap_defval;
extern const MNCC__bearer__cap_template& tr__MNCC__CALL__PROC__req_bcap_defval;
extern const MNCC__progress_template& tr__MNCC__CALL__PROC__req_prog_defval;
extern const CHARSTRING_template& tr__MNCC__CALL__PROC__req_fac_defval;
extern const MNCC__cccap_template& tr__MNCC__CALL__PROC__req_cccap_defval;
extern const MNCC__useruser_template& ts__MNCC__PROGRESS__req_uu_defval;
extern const MNCC__progress_template& ts__MNCC__ALERT__req_prog_defval;
extern const CHARSTRING_template& ts__MNCC__ALERT__req_fac_defval;
extern const MNCC__useruser_template& ts__MNCC__ALERT__req_uu_defval;
extern const MNCC__progress_template& tr__MNCC__ALERT__req_prog_defval;
extern const CHARSTRING_template& tr__MNCC__ALERT__req_fac_defval;
extern const MNCC__useruser_template& tr__MNCC__ALERT__req_uu_defval;
extern const MNCC__progress_template& tr__MNCC__ALERT__ind_prog_defval;
extern const CHARSTRING_template& tr__MNCC__ALERT__ind_fac_defval;
extern const MNCC__useruser_template& tr__MNCC__ALERT__ind_uu_defval;
extern const MNCC__progress_template& ts__MNCC__ALERT__ind_prog_defval;
extern const CHARSTRING_template& ts__MNCC__ALERT__ind_fac_defval;
extern const MNCC__useruser_template& ts__MNCC__ALERT__ind_uu_defval;
extern const INTEGER_template& tr__MNCC__DISC__ind_call__id_defval;
extern const MNCC__cause_template& tr__MNCC__DISC__ind_cause_defval;
extern const MNCC__progress_template& tr__MNCC__DISC__ind_prog_defval;
extern const CHARSTRING_template& tr__MNCC__DISC__ind_fac_defval;
extern const MNCC__useruser_template& tr__MNCC__DISC__ind_uu_defval;
extern const MNCC__progress_template& ts__MNCC__DISC__ind_prog_defval;
extern const CHARSTRING_template& ts__MNCC__DISC__ind_fac_defval;
extern const MNCC__useruser_template& ts__MNCC__DISC__ind_uu_defval;
extern const MNCC__progress_template& ts__MNCC__DISC__req_prog_defval;
extern const CHARSTRING_template& ts__MNCC__DISC__req_fac_defval;
extern const MNCC__useruser_template& ts__MNCC__DISC__req_uu_defval;
extern const MNCC__cause_template& tr__MNCC__DISC__req_cause_defval;
extern const MNCC__progress_template& tr__MNCC__DISC__req_prog_defval;
extern const CHARSTRING_template& tr__MNCC__DISC__req_fac_defval;
extern const MNCC__useruser_template& tr__MNCC__DISC__req_uu_defval;
extern const INTEGER_template& tr__MNCC__REL__ind_call__id_defval;
extern const MNCC__cause_template& tr__MNCC__REL__ind_cause_defval;
extern const CHARSTRING_template& tr__MNCC__REL__ind_fac_defval;
extern const MNCC__useruser_template& tr__MNCC__REL__ind_uu_defval;
extern const CHARSTRING_template& ts__MNCC__REL__ind_fac_defval;
extern const MNCC__useruser_template& ts__MNCC__REL__ind_uu_defval;
extern const CHARSTRING_template& ts__MNCC__REL__req_fac_defval;
extern const MNCC__useruser_template& ts__MNCC__REL__req_uu_defval;
extern const MNCC__cause_template& tr__MNCC__REL__req_cause_defval;
extern const CHARSTRING_template& tr__MNCC__REL__req_fac_defval;
extern const MNCC__useruser_template& tr__MNCC__REL__req_uu_defval;
extern const INTEGER_template& tr__MNCC__REL__cnf_call__id_defval;
extern const MNCC__cause_template& tr__MNCC__REL__cnf_cause_defval;
extern const CHARSTRING_template& tr__MNCC__REL__cnf_fac_defval;
extern const MNCC__useruser_template& tr__MNCC__REL__cnf_uu_defval;
extern const CHARSTRING_template& ts__MNCC__REL__cnf_fac_defval;
extern const MNCC__useruser_template& ts__MNCC__REL__cnf_uu_defval;
extern const INTEGER_template& tr__MNCC__FACILITY__ind_call__id_defval;
extern const CHARSTRING_template& tr__MNCC__FACILITY__ind_fac_defval;
extern const INTEGER_template& tr__MNCC__START__DTMF__ind_call__id_defval;
extern const CHARSTRING_template& tr__MNCC__START__DTMF__ind_keypad_defval;
extern const INTEGER_template& tr__MNCC__STOP__DTMF__ind_call__id_defval;
extern const INTEGER_template& tr__MNCC__MODIFY__ind_call__id_defval;
extern const MNCC__bearer__cap_template& tr__MNCC__MODIFY__ind_bcap_defval;
extern const INTEGER_template& tr__MNCC__MODIFY__cnf_call__id_defval;
extern const MNCC__bearer__cap_template& tr__MNCC__MODIFY__cnf_bcap_defval;
extern const INTEGER_template& tr__MNCC__USERINFO__ind_call__id_defval;
extern const MNCC__useruser_template& tr__MNCC__USERINFO__ind_uu_defval;
extern const INTEGER_template& tr__MNCC__HOLD__ind_call__id_defval;
extern const INTEGER_template& tr__MNCC__RETRIEVE__ind_call__id_defval;
extern const INTEGER_template& tr__MNCC__RTP__CREATE_call__id_defval;
extern const INTEGER_template& tr__MNCC__RTP__CONNECT_ip_defval;
extern const INTEGER_template& tr__MNCC__RTP__CONNECT_rtp__port_defval;
extern const INTEGER_template& tr__MNCC__RTP__CONNECT_pt_defval;
extern TTCN_Module module_object;

} /* end of namespace */

#endif
personal git repositories of Harald Welte. Your mileage may vary