summaryrefslogtreecommitdiff
path: root/titan/PCUIF_Types.hh
blob: ba6fd5ac6a11c261fd06b1fb80dabb27d06440f0 (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
// 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 Thu Mar 22 22:09:15 2018

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

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

#ifndef PCUIF__Types_HH
#define PCUIF__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 PCUIF__Types_HH
#endif

namespace PCUIF__Types {

/* Forward declarations of classes */

class PCUIF__MsgType;
class PCUIF__MsgType_template;
class PCUIF__Sapi;
class PCUIF__Sapi_template;
class PCUIF__Flags;
class PCUIF__Flags_template;
class PCUIF__TextType;
class PCUIF__TextType_template;
class PCUIF__txt__ind;
class PCUIF__txt__ind_template;
class PCUIF__data;
class PCUIF__data_template;
class PCUIF__data__cnf__dt;
class PCUIF__data__cnf__dt_template;
class PCUIF__rts__req;
class PCUIF__rts__req_template;
class PCUIF__rach__ind;
class PCUIF__rach__ind_template;
class PCUIF__InfoTrx;
class PCUIF__InfoTrx_template;
class PCUIF__info__ind_trx;
class PCUIF__info__ind_trx_template;
typedef PreGenRecordOf::PREGEN__RECORD__OF__INTEGER PCUIF__info__ind_nse__timer;
typedef PreGenRecordOf::PREGEN__RECORD__OF__INTEGER_template PCUIF__info__ind_nse__timer_template;
typedef PreGenRecordOf::PREGEN__RECORD__OF__INTEGER PCUIF__info__ind_cell__timer;
typedef PreGenRecordOf::PREGEN__RECORD__OF__INTEGER_template PCUIF__info__ind_cell__timer_template;
typedef PreGenRecordOf::PREGEN__RECORD__OF__INTEGER PCUIF__info__ind_nsvci;
typedef PreGenRecordOf::PREGEN__RECORD__OF__INTEGER_template PCUIF__info__ind_nsvci_template;
typedef PreGenRecordOf::PREGEN__RECORD__OF__INTEGER PCUIF__info__ind_local__pprt;
typedef PreGenRecordOf::PREGEN__RECORD__OF__INTEGER_template PCUIF__info__ind_local__pprt_template;
typedef PreGenRecordOf::PREGEN__RECORD__OF__INTEGER PCUIF__info__ind_remote__port;
typedef PreGenRecordOf::PREGEN__RECORD__OF__INTEGER_template PCUIF__info__ind_remote__port_template;
typedef PreGenRecordOf::PREGEN__RECORD__OF__INTEGER PCUIF__info__ind_remote__ip;
typedef PreGenRecordOf::PREGEN__RECORD__OF__INTEGER_template PCUIF__info__ind_remote__ip_template;
class PCUIF__info__ind;
class PCUIF__info__ind_template;
class PCUIF__act__req;
class PCUIF__act__req_template;
class PCUIF__time__ind;
class PCUIF__time__ind_template;
class PCUIF__pag__req;
class PCUIF__pag__req_template;
class PCUIF__susp__req;
class PCUIF__susp__req_template;
class PCUIF__MsgUnion;
class PCUIF__MsgUnion_template;
class PCUIF__Message;
class PCUIF__Message_template;

} /* end of namespace */

#ifndef PCUIF__Types_HH
#define PCUIF__Types_HH

namespace PCUIF__Types {

/* Type definitions */

typedef CHARSTRING PCUIF__Text;
typedef CHARSTRING_template PCUIF__Text_template;
typedef OCTETSTRING OCT162;
typedef OCTETSTRING_template OCT162_template;

/* Class definitions */

class PCUIF__MsgType : public Base_Type { // enum
friend class PCUIF__MsgType_template;
public:
enum enum_type { PCU__IF__MSG__DATA__REQ = 0, PCU__IF__MSG__DATA__CNF = 1, PCU__IF__MSG__DATA__IND = 2, PCU__IF__MSG__SUSP__REQ = 3, PCU__IF__MSG__RTS__REQ = 16, PCU__IF__MSG__DATA__CNF__DT = 17, PCU__IF__MSG__RACH__IND = 34, PCU__IF__MSG__INFO__IND = 50, PCU__IF__MSG__ACT__REQ = 64, PCU__IF__MSG__TIME__IND = 82, PCU__IF__MSG__PAG__REQ = 96, PCU__IF__MSG__TXT__IND = 112, UNKNOWN_VALUE = 4, UNBOUND_VALUE = 5 };
private:
enum_type enum_value;

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

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

boolean operator==(enum_type other_value) const;
boolean operator==(const PCUIF__MsgType& other_value) const;
inline boolean operator!=(enum_type other_value) const { return !(*this == other_value); }
inline boolean operator!=(const PCUIF__MsgType& other_value) const { return !(*this == other_value); }
boolean operator<(enum_type other_value) const;
boolean operator<(const PCUIF__MsgType& other_value) const;
boolean operator>(enum_type other_value) const;
boolean operator>(const PCUIF__MsgType& other_value) const;
inline boolean operator<=(enum_type other_value) const { return !(*this > other_value); }
inline boolean operator<=(const PCUIF__MsgType& other_value) const { return !(*this > other_value); }
inline boolean operator>=(enum_type other_value) const { return !(*this < other_value); }
inline boolean operator>=(const PCUIF__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 PCUIF__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 PCUIF__MsgType_template : public Base_Template {
union {
PCUIF__MsgType::enum_type single_value;
struct {
unsigned int n_values;
PCUIF__MsgType_template *list_value;
} value_list;
};

void copy_template(const PCUIF__MsgType_template& other_value);

public:
PCUIF__MsgType_template();
PCUIF__MsgType_template(template_sel other_value);
PCUIF__MsgType_template(int other_value);
PCUIF__MsgType_template(PCUIF__MsgType::enum_type other_value);
PCUIF__MsgType_template(const PCUIF__MsgType& other_value);
PCUIF__MsgType_template(const OPTIONAL<PCUIF__MsgType>& other_value);
PCUIF__MsgType_template(const PCUIF__MsgType_template& other_value);
~PCUIF__MsgType_template();

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

boolean match(PCUIF__MsgType::enum_type other_value, boolean legacy = FALSE) const;
boolean match(const PCUIF__MsgType& other_value, boolean legacy = FALSE) const;
PCUIF__MsgType::enum_type valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
PCUIF__MsgType_template& list_item(unsigned int list_index);
void log() const;
void log_match(const PCUIF__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 PCUIF__Sapi : public Base_Type { // enum
friend class PCUIF__Sapi_template;
public:
enum enum_type { PCU__IF__SAPI__UNKNOWN = 0, PCU__IF__SAPI__RACH = 1, PCU__IF__SAPI__AGCH = 2, PCU__IF__SAPI__PCH = 3, PCU__IF__SAPI__BCCH = 4, PCU__IF__SAPI__PDTCH = 5, PCU__IF__SAPI__PRACH = 6, PCU__IF__SAPI__PTCCH = 7, PCU__IF__SAPI__AGCH__DT = 8, UNKNOWN_VALUE = 9, UNBOUND_VALUE = 10 };
private:
enum_type enum_value;

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

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

boolean operator==(enum_type other_value) const;
boolean operator==(const PCUIF__Sapi& other_value) const;
inline boolean operator!=(enum_type other_value) const { return !(*this == other_value); }
inline boolean operator!=(const PCUIF__Sapi& other_value) const { return !(*this == other_value); }
boolean operator<(enum_type other_value) const;
boolean operator<(const PCUIF__Sapi& other_value) const;
boolean operator>(enum_type other_value) const;
boolean operator>(const PCUIF__Sapi& other_value) const;
inline boolean operator<=(enum_type other_value) const { return !(*this > other_value); }
inline boolean operator<=(const PCUIF__Sapi& other_value) const { return !(*this > other_value); }
inline boolean operator>=(enum_type other_value) const { return !(*this < other_value); }
inline boolean operator>=(const PCUIF__Sapi& 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 PCUIF__Sapi& 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 PCUIF__Sapi_template : public Base_Template {
union {
PCUIF__Sapi::enum_type single_value;
struct {
unsigned int n_values;
PCUIF__Sapi_template *list_value;
} value_list;
};

void copy_template(const PCUIF__Sapi_template& other_value);

public:
PCUIF__Sapi_template();
PCUIF__Sapi_template(template_sel other_value);
PCUIF__Sapi_template(int other_value);
PCUIF__Sapi_template(PCUIF__Sapi::enum_type other_value);
PCUIF__Sapi_template(const PCUIF__Sapi& other_value);
PCUIF__Sapi_template(const OPTIONAL<PCUIF__Sapi>& other_value);
PCUIF__Sapi_template(const PCUIF__Sapi_template& other_value);
~PCUIF__Sapi_template();

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

boolean match(PCUIF__Sapi::enum_type other_value, boolean legacy = FALSE) const;
boolean match(const PCUIF__Sapi& other_value, boolean legacy = FALSE) const;
PCUIF__Sapi::enum_type valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
PCUIF__Sapi_template& list_item(unsigned int list_index);
void log() const;
void log_match(const PCUIF__Sapi& 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 PCUIF__Flags : public Base_Type {
  BOOLEAN field_bts__active;
  BOOLEAN field_sysmo__direct__dsp;
  BITSTRING field_spare;
  BOOLEAN field_cs1;
  BOOLEAN field_cs2;
  BOOLEAN field_cs3;
  BOOLEAN field_cs4;
  BOOLEAN field_mcs1;
  BOOLEAN field_mcs2;
  BOOLEAN field_mcs3;
  BOOLEAN field_mcs4;
  BOOLEAN field_mcs5;
  BOOLEAN field_mcs6;
  BOOLEAN field_mcs7;
  BOOLEAN field_mcs8;
  BOOLEAN field_mcs9;
  BITSTRING field_spare2;
public:
  PCUIF__Flags();
  PCUIF__Flags(const BOOLEAN& par_bts__active,
    const BOOLEAN& par_sysmo__direct__dsp,
    const BITSTRING& par_spare,
    const BOOLEAN& par_cs1,
    const BOOLEAN& par_cs2,
    const BOOLEAN& par_cs3,
    const BOOLEAN& par_cs4,
    const BOOLEAN& par_mcs1,
    const BOOLEAN& par_mcs2,
    const BOOLEAN& par_mcs3,
    const BOOLEAN& par_mcs4,
    const BOOLEAN& par_mcs5,
    const BOOLEAN& par_mcs6,
    const BOOLEAN& par_mcs7,
    const BOOLEAN& par_mcs8,
    const BOOLEAN& par_mcs9,
    const BITSTRING& par_spare2);
  PCUIF__Flags(const PCUIF__Flags& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  PCUIF__Flags& operator=(const PCUIF__Flags& other_value);
  boolean operator==(const PCUIF__Flags& other_value) const;
  inline boolean operator!=(const PCUIF__Flags& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

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

  inline BOOLEAN& bts__active()
    {return field_bts__active;}
  inline const BOOLEAN& bts__active() const
    {return field_bts__active;}
  inline BOOLEAN& sysmo__direct__dsp()
    {return field_sysmo__direct__dsp;}
  inline const BOOLEAN& sysmo__direct__dsp() const
    {return field_sysmo__direct__dsp;}
  inline BITSTRING& spare()
    {return field_spare;}
  inline const BITSTRING& spare() const
    {return field_spare;}
  inline BOOLEAN& cs1()
    {return field_cs1;}
  inline const BOOLEAN& cs1() const
    {return field_cs1;}
  inline BOOLEAN& cs2()
    {return field_cs2;}
  inline const BOOLEAN& cs2() const
    {return field_cs2;}
  inline BOOLEAN& cs3()
    {return field_cs3;}
  inline const BOOLEAN& cs3() const
    {return field_cs3;}
  inline BOOLEAN& cs4()
    {return field_cs4;}
  inline const BOOLEAN& cs4() const
    {return field_cs4;}
  inline BOOLEAN& mcs1()
    {return field_mcs1;}
  inline const BOOLEAN& mcs1() const
    {return field_mcs1;}
  inline BOOLEAN& mcs2()
    {return field_mcs2;}
  inline const BOOLEAN& mcs2() const
    {return field_mcs2;}
  inline BOOLEAN& mcs3()
    {return field_mcs3;}
  inline const BOOLEAN& mcs3() const
    {return field_mcs3;}
  inline BOOLEAN& mcs4()
    {return field_mcs4;}
  inline const BOOLEAN& mcs4() const
    {return field_mcs4;}
  inline BOOLEAN& mcs5()
    {return field_mcs5;}
  inline const BOOLEAN& mcs5() const
    {return field_mcs5;}
  inline BOOLEAN& mcs6()
    {return field_mcs6;}
  inline const BOOLEAN& mcs6() const
    {return field_mcs6;}
  inline BOOLEAN& mcs7()
    {return field_mcs7;}
  inline const BOOLEAN& mcs7() const
    {return field_mcs7;}
  inline BOOLEAN& mcs8()
    {return field_mcs8;}
  inline const BOOLEAN& mcs8() const
    {return field_mcs8;}
  inline BOOLEAN& mcs9()
    {return field_mcs9;}
  inline const BOOLEAN& mcs9() const
    {return field_mcs9;}
  inline BITSTRING& spare2()
    {return field_spare2;}
  inline const BITSTRING& spare2() const
    {return field_spare2;}
  inline int size_of() const
    {return 17;}
  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 PCUIF__Flags_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
PCUIF__Flags_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const PCUIF__Flags& other_value);
void copy_template(const PCUIF__Flags_template& other_value);

public:
PCUIF__Flags_template();
PCUIF__Flags_template(template_sel other_value);
PCUIF__Flags_template(const PCUIF__Flags& other_value);
PCUIF__Flags_template(const OPTIONAL<PCUIF__Flags>& other_value);
PCUIF__Flags_template(const PCUIF__Flags_template& other_value);
~PCUIF__Flags_template();
PCUIF__Flags_template& operator=(template_sel other_value);
PCUIF__Flags_template& operator=(const PCUIF__Flags& other_value);
PCUIF__Flags_template& operator=(const OPTIONAL<PCUIF__Flags>& other_value);
PCUIF__Flags_template& operator=(const PCUIF__Flags_template& other_value);
boolean match(const PCUIF__Flags& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
PCUIF__Flags valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
PCUIF__Flags_template& list_item(unsigned int list_index) const;
BOOLEAN_template& bts__active();
const BOOLEAN_template& bts__active() const;
BOOLEAN_template& sysmo__direct__dsp();
const BOOLEAN_template& sysmo__direct__dsp() const;
BITSTRING_template& spare();
const BITSTRING_template& spare() const;
BOOLEAN_template& cs1();
const BOOLEAN_template& cs1() const;
BOOLEAN_template& cs2();
const BOOLEAN_template& cs2() const;
BOOLEAN_template& cs3();
const BOOLEAN_template& cs3() const;
BOOLEAN_template& cs4();
const BOOLEAN_template& cs4() const;
BOOLEAN_template& mcs1();
const BOOLEAN_template& mcs1() const;
BOOLEAN_template& mcs2();
const BOOLEAN_template& mcs2() const;
BOOLEAN_template& mcs3();
const BOOLEAN_template& mcs3() const;
BOOLEAN_template& mcs4();
const BOOLEAN_template& mcs4() const;
BOOLEAN_template& mcs5();
const BOOLEAN_template& mcs5() const;
BOOLEAN_template& mcs6();
const BOOLEAN_template& mcs6() const;
BOOLEAN_template& mcs7();
const BOOLEAN_template& mcs7() const;
BOOLEAN_template& mcs8();
const BOOLEAN_template& mcs8() const;
BOOLEAN_template& mcs9();
const BOOLEAN_template& mcs9() const;
BITSTRING_template& spare2();
const BITSTRING_template& spare2() const;
int size_of() const;
void log() const;
void log_match(const PCUIF__Flags& 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 PCUIF__TextType : public Base_Type { // enum
friend class PCUIF__TextType_template;
public:
enum enum_type { PCU__VERSION = 0, PCU__OML__ALERT = 1, UNKNOWN_VALUE = 2, UNBOUND_VALUE = 3 };
private:
enum_type enum_value;

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

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

boolean operator==(enum_type other_value) const;
boolean operator==(const PCUIF__TextType& other_value) const;
inline boolean operator!=(enum_type other_value) const { return !(*this == other_value); }
inline boolean operator!=(const PCUIF__TextType& other_value) const { return !(*this == other_value); }
boolean operator<(enum_type other_value) const;
boolean operator<(const PCUIF__TextType& other_value) const;
boolean operator>(enum_type other_value) const;
boolean operator>(const PCUIF__TextType& other_value) const;
inline boolean operator<=(enum_type other_value) const { return !(*this > other_value); }
inline boolean operator<=(const PCUIF__TextType& other_value) const { return !(*this > other_value); }
inline boolean operator>=(enum_type other_value) const { return !(*this < other_value); }
inline boolean operator>=(const PCUIF__TextType& 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 PCUIF__TextType& 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 PCUIF__TextType_template : public Base_Template {
union {
PCUIF__TextType::enum_type single_value;
struct {
unsigned int n_values;
PCUIF__TextType_template *list_value;
} value_list;
};

void copy_template(const PCUIF__TextType_template& other_value);

public:
PCUIF__TextType_template();
PCUIF__TextType_template(template_sel other_value);
PCUIF__TextType_template(int other_value);
PCUIF__TextType_template(PCUIF__TextType::enum_type other_value);
PCUIF__TextType_template(const PCUIF__TextType& other_value);
PCUIF__TextType_template(const OPTIONAL<PCUIF__TextType>& other_value);
PCUIF__TextType_template(const PCUIF__TextType_template& other_value);
~PCUIF__TextType_template();

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

boolean match(PCUIF__TextType::enum_type other_value, boolean legacy = FALSE) const;
boolean match(const PCUIF__TextType& other_value, boolean legacy = FALSE) const;
PCUIF__TextType::enum_type valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
PCUIF__TextType_template& list_item(unsigned int list_index);
void log() const;
void log_match(const PCUIF__TextType& 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 PCUIF__txt__ind : public Base_Type {
  PCUIF__TextType field_txt__type;
  CHARSTRING field_text;
public:
  PCUIF__txt__ind();
  PCUIF__txt__ind(const PCUIF__TextType& par_txt__type,
    const CHARSTRING& par_text);
  PCUIF__txt__ind(const PCUIF__txt__ind& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  PCUIF__txt__ind& operator=(const PCUIF__txt__ind& other_value);
  boolean operator==(const PCUIF__txt__ind& other_value) const;
  inline boolean operator!=(const PCUIF__txt__ind& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

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

  inline PCUIF__TextType& txt__type()
    {return field_txt__type;}
  inline const PCUIF__TextType& txt__type() const
    {return field_txt__type;}
  inline CHARSTRING& text()
    {return field_text;}
  inline const CHARSTRING& text() const
    {return field_text;}
  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 PCUIF__txt__ind_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
PCUIF__txt__ind_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const PCUIF__txt__ind& other_value);
void copy_template(const PCUIF__txt__ind_template& other_value);

public:
PCUIF__txt__ind_template();
PCUIF__txt__ind_template(template_sel other_value);
PCUIF__txt__ind_template(const PCUIF__txt__ind& other_value);
PCUIF__txt__ind_template(const OPTIONAL<PCUIF__txt__ind>& other_value);
PCUIF__txt__ind_template(const PCUIF__txt__ind_template& other_value);
~PCUIF__txt__ind_template();
PCUIF__txt__ind_template& operator=(template_sel other_value);
PCUIF__txt__ind_template& operator=(const PCUIF__txt__ind& other_value);
PCUIF__txt__ind_template& operator=(const OPTIONAL<PCUIF__txt__ind>& other_value);
PCUIF__txt__ind_template& operator=(const PCUIF__txt__ind_template& other_value);
boolean match(const PCUIF__txt__ind& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
PCUIF__txt__ind valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
PCUIF__txt__ind_template& list_item(unsigned int list_index) const;
PCUIF__TextType_template& txt__type();
const PCUIF__TextType_template& txt__type() const;
CHARSTRING_template& text();
const CHARSTRING_template& text() const;
int size_of() const;
void log() const;
void log_match(const PCUIF__txt__ind& 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 PCUIF__data : public Base_Type {
  PCUIF__Sapi field_sapi;
  INTEGER field_len;
  OCTETSTRING field_data;
  INTEGER field_fn;
  INTEGER field_arfcn;
  INTEGER field_trx__nr;
  INTEGER field_ts__nr;
  INTEGER field_block__nr;
  INTEGER field_rssi;
  INTEGER field_ber10k;
  INTEGER field_ta__offs__qbits;
  INTEGER field_lqual__cb;
public:
  PCUIF__data();
  PCUIF__data(const PCUIF__Sapi& par_sapi,
    const INTEGER& par_len,
    const OCTETSTRING& par_data,
    const INTEGER& par_fn,
    const INTEGER& par_arfcn,
    const INTEGER& par_trx__nr,
    const INTEGER& par_ts__nr,
    const INTEGER& par_block__nr,
    const INTEGER& par_rssi,
    const INTEGER& par_ber10k,
    const INTEGER& par_ta__offs__qbits,
    const INTEGER& par_lqual__cb);
  PCUIF__data(const PCUIF__data& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  PCUIF__data& operator=(const PCUIF__data& other_value);
  boolean operator==(const PCUIF__data& other_value) const;
  inline boolean operator!=(const PCUIF__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 PCUIF__Sapi& sapi()
    {return field_sapi;}
  inline const PCUIF__Sapi& sapi() const
    {return field_sapi;}
  inline INTEGER& len()
    {return field_len;}
  inline const INTEGER& len() const
    {return field_len;}
  inline OCTETSTRING& data()
    {return field_data;}
  inline const OCTETSTRING& data() const
    {return field_data;}
  inline INTEGER& fn()
    {return field_fn;}
  inline const INTEGER& fn() const
    {return field_fn;}
  inline INTEGER& arfcn()
    {return field_arfcn;}
  inline const INTEGER& arfcn() const
    {return field_arfcn;}
  inline INTEGER& trx__nr()
    {return field_trx__nr;}
  inline const INTEGER& trx__nr() const
    {return field_trx__nr;}
  inline INTEGER& ts__nr()
    {return field_ts__nr;}
  inline const INTEGER& ts__nr() const
    {return field_ts__nr;}
  inline INTEGER& block__nr()
    {return field_block__nr;}
  inline const INTEGER& block__nr() const
    {return field_block__nr;}
  inline INTEGER& rssi()
    {return field_rssi;}
  inline const INTEGER& rssi() const
    {return field_rssi;}
  inline INTEGER& ber10k()
    {return field_ber10k;}
  inline const INTEGER& ber10k() const
    {return field_ber10k;}
  inline INTEGER& ta__offs__qbits()
    {return field_ta__offs__qbits;}
  inline const INTEGER& ta__offs__qbits() const
    {return field_ta__offs__qbits;}
  inline INTEGER& lqual__cb()
    {return field_lqual__cb;}
  inline const INTEGER& lqual__cb() const
    {return field_lqual__cb;}
  inline int size_of() const
    {return 12;}
  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 PCUIF__data_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
PCUIF__data_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const PCUIF__data& other_value);
void copy_template(const PCUIF__data_template& other_value);

public:
PCUIF__data_template();
PCUIF__data_template(template_sel other_value);
PCUIF__data_template(const PCUIF__data& other_value);
PCUIF__data_template(const OPTIONAL<PCUIF__data>& other_value);
PCUIF__data_template(const PCUIF__data_template& other_value);
~PCUIF__data_template();
PCUIF__data_template& operator=(template_sel other_value);
PCUIF__data_template& operator=(const PCUIF__data& other_value);
PCUIF__data_template& operator=(const OPTIONAL<PCUIF__data>& other_value);
PCUIF__data_template& operator=(const PCUIF__data_template& other_value);
boolean match(const PCUIF__data& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
PCUIF__data valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
PCUIF__data_template& list_item(unsigned int list_index) const;
PCUIF__Sapi_template& sapi();
const PCUIF__Sapi_template& sapi() const;
INTEGER_template& len();
const INTEGER_template& len() const;
OCTETSTRING_template& data();
const OCTETSTRING_template& data() const;
INTEGER_template& fn();
const INTEGER_template& fn() const;
INTEGER_template& arfcn();
const INTEGER_template& arfcn() const;
INTEGER_template& trx__nr();
const INTEGER_template& trx__nr() const;
INTEGER_template& ts__nr();
const INTEGER_template& ts__nr() const;
INTEGER_template& block__nr();
const INTEGER_template& block__nr() const;
INTEGER_template& rssi();
const INTEGER_template& rssi() const;
INTEGER_template& ber10k();
const INTEGER_template& ber10k() const;
INTEGER_template& ta__offs__qbits();
const INTEGER_template& ta__offs__qbits() const;
INTEGER_template& lqual__cb();
const INTEGER_template& lqual__cb() const;
int size_of() const;
void log() const;
void log_match(const PCUIF__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 PCUIF__data__cnf__dt : public Base_Type {
  PCUIF__Sapi field_sapi;
  OCTETSTRING field_tlli;
  INTEGER field_fn;
  INTEGER field_arfcn;
  INTEGER field_trx__nr;
  INTEGER field_ts__nr;
  INTEGER field_block__nr;
  INTEGER field_rssi;
  INTEGER field_ber10k;
  INTEGER field_ta__offs__qbits;
  INTEGER field_lqual__cb;
public:
  PCUIF__data__cnf__dt();
  PCUIF__data__cnf__dt(const PCUIF__Sapi& par_sapi,
    const OCTETSTRING& par_tlli,
    const INTEGER& par_fn,
    const INTEGER& par_arfcn,
    const INTEGER& par_trx__nr,
    const INTEGER& par_ts__nr,
    const INTEGER& par_block__nr,
    const INTEGER& par_rssi,
    const INTEGER& par_ber10k,
    const INTEGER& par_ta__offs__qbits,
    const INTEGER& par_lqual__cb);
  PCUIF__data__cnf__dt(const PCUIF__data__cnf__dt& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  PCUIF__data__cnf__dt& operator=(const PCUIF__data__cnf__dt& other_value);
  boolean operator==(const PCUIF__data__cnf__dt& other_value) const;
  inline boolean operator!=(const PCUIF__data__cnf__dt& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

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

  inline PCUIF__Sapi& sapi()
    {return field_sapi;}
  inline const PCUIF__Sapi& sapi() const
    {return field_sapi;}
  inline OCTETSTRING& tlli()
    {return field_tlli;}
  inline const OCTETSTRING& tlli() const
    {return field_tlli;}
  inline INTEGER& fn()
    {return field_fn;}
  inline const INTEGER& fn() const
    {return field_fn;}
  inline INTEGER& arfcn()
    {return field_arfcn;}
  inline const INTEGER& arfcn() const
    {return field_arfcn;}
  inline INTEGER& trx__nr()
    {return field_trx__nr;}
  inline const INTEGER& trx__nr() const
    {return field_trx__nr;}
  inline INTEGER& ts__nr()
    {return field_ts__nr;}
  inline const INTEGER& ts__nr() const
    {return field_ts__nr;}
  inline INTEGER& block__nr()
    {return field_block__nr;}
  inline const INTEGER& block__nr() const
    {return field_block__nr;}
  inline INTEGER& rssi()
    {return field_rssi;}
  inline const INTEGER& rssi() const
    {return field_rssi;}
  inline INTEGER& ber10k()
    {return field_ber10k;}
  inline const INTEGER& ber10k() const
    {return field_ber10k;}
  inline INTEGER& ta__offs__qbits()
    {return field_ta__offs__qbits;}
  inline const INTEGER& ta__offs__qbits() const
    {return field_ta__offs__qbits;}
  inline INTEGER& lqual__cb()
    {return field_lqual__cb;}
  inline const INTEGER& lqual__cb() const
    {return field_lqual__cb;}
  inline int size_of() const
    {return 11;}
  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 PCUIF__data__cnf__dt_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
PCUIF__data__cnf__dt_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const PCUIF__data__cnf__dt& other_value);
void copy_template(const PCUIF__data__cnf__dt_template& other_value);

public:
PCUIF__data__cnf__dt_template();
PCUIF__data__cnf__dt_template(template_sel other_value);
PCUIF__data__cnf__dt_template(const PCUIF__data__cnf__dt& other_value);
PCUIF__data__cnf__dt_template(const OPTIONAL<PCUIF__data__cnf__dt>& other_value);
PCUIF__data__cnf__dt_template(const PCUIF__data__cnf__dt_template& other_value);
~PCUIF__data__cnf__dt_template();
PCUIF__data__cnf__dt_template& operator=(template_sel other_value);
PCUIF__data__cnf__dt_template& operator=(const PCUIF__data__cnf__dt& other_value);
PCUIF__data__cnf__dt_template& operator=(const OPTIONAL<PCUIF__data__cnf__dt>& other_value);
PCUIF__data__cnf__dt_template& operator=(const PCUIF__data__cnf__dt_template& other_value);
boolean match(const PCUIF__data__cnf__dt& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
PCUIF__data__cnf__dt valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
PCUIF__data__cnf__dt_template& list_item(unsigned int list_index) const;
PCUIF__Sapi_template& sapi();
const PCUIF__Sapi_template& sapi() const;
OCTETSTRING_template& tlli();
const OCTETSTRING_template& tlli() const;
INTEGER_template& fn();
const INTEGER_template& fn() const;
INTEGER_template& arfcn();
const INTEGER_template& arfcn() const;
INTEGER_template& trx__nr();
const INTEGER_template& trx__nr() const;
INTEGER_template& ts__nr();
const INTEGER_template& ts__nr() const;
INTEGER_template& block__nr();
const INTEGER_template& block__nr() const;
INTEGER_template& rssi();
const INTEGER_template& rssi() const;
INTEGER_template& ber10k();
const INTEGER_template& ber10k() const;
INTEGER_template& ta__offs__qbits();
const INTEGER_template& ta__offs__qbits() const;
INTEGER_template& lqual__cb();
const INTEGER_template& lqual__cb() const;
int size_of() const;
void log() const;
void log_match(const PCUIF__data__cnf__dt& 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 PCUIF__rts__req : public Base_Type {
  PCUIF__Sapi field_sapi;
  OCTETSTRING field_spare;
  INTEGER field_fn;
  INTEGER field_arfcn;
  INTEGER field_trx__nr;
  INTEGER field_ts__nr;
  INTEGER field_block__nr;
public:
  PCUIF__rts__req();
  PCUIF__rts__req(const PCUIF__Sapi& par_sapi,
    const OCTETSTRING& par_spare,
    const INTEGER& par_fn,
    const INTEGER& par_arfcn,
    const INTEGER& par_trx__nr,
    const INTEGER& par_ts__nr,
    const INTEGER& par_block__nr);
  PCUIF__rts__req(const PCUIF__rts__req& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  PCUIF__rts__req& operator=(const PCUIF__rts__req& other_value);
  boolean operator==(const PCUIF__rts__req& other_value) const;
  inline boolean operator!=(const PCUIF__rts__req& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

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

  inline PCUIF__Sapi& sapi()
    {return field_sapi;}
  inline const PCUIF__Sapi& sapi() const
    {return field_sapi;}
  inline OCTETSTRING& spare()
    {return field_spare;}
  inline const OCTETSTRING& spare() const
    {return field_spare;}
  inline INTEGER& fn()
    {return field_fn;}
  inline const INTEGER& fn() const
    {return field_fn;}
  inline INTEGER& arfcn()
    {return field_arfcn;}
  inline const INTEGER& arfcn() const
    {return field_arfcn;}
  inline INTEGER& trx__nr()
    {return field_trx__nr;}
  inline const INTEGER& trx__nr() const
    {return field_trx__nr;}
  inline INTEGER& ts__nr()
    {return field_ts__nr;}
  inline const INTEGER& ts__nr() const
    {return field_ts__nr;}
  inline INTEGER& block__nr()
    {return field_block__nr;}
  inline const INTEGER& block__nr() const
    {return field_block__nr;}
  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 PCUIF__rts__req_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
PCUIF__rts__req_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const PCUIF__rts__req& other_value);
void copy_template(const PCUIF__rts__req_template& other_value);

public:
PCUIF__rts__req_template();
PCUIF__rts__req_template(template_sel other_value);
PCUIF__rts__req_template(const PCUIF__rts__req& other_value);
PCUIF__rts__req_template(const OPTIONAL<PCUIF__rts__req>& other_value);
PCUIF__rts__req_template(const PCUIF__rts__req_template& other_value);
~PCUIF__rts__req_template();
PCUIF__rts__req_template& operator=(template_sel other_value);
PCUIF__rts__req_template& operator=(const PCUIF__rts__req& other_value);
PCUIF__rts__req_template& operator=(const OPTIONAL<PCUIF__rts__req>& other_value);
PCUIF__rts__req_template& operator=(const PCUIF__rts__req_template& other_value);
boolean match(const PCUIF__rts__req& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
PCUIF__rts__req valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
PCUIF__rts__req_template& list_item(unsigned int list_index) const;
PCUIF__Sapi_template& sapi();
const PCUIF__Sapi_template& sapi() const;
OCTETSTRING_template& spare();
const OCTETSTRING_template& spare() const;
INTEGER_template& fn();
const INTEGER_template& fn() const;
INTEGER_template& arfcn();
const INTEGER_template& arfcn() const;
INTEGER_template& trx__nr();
const INTEGER_template& trx__nr() const;
INTEGER_template& ts__nr();
const INTEGER_template& ts__nr() const;
INTEGER_template& block__nr();
const INTEGER_template& block__nr() const;
int size_of() const;
void log() const;
void log_match(const PCUIF__rts__req& 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 PCUIF__rach__ind : public Base_Type {
  PCUIF__Sapi field_sapi;
  INTEGER field_ra;
  INTEGER field_qta;
  INTEGER field_fn;
  INTEGER field_arfcn;
  INTEGER field_is__11bit;
  INTEGER field_burst__type;
public:
  PCUIF__rach__ind();
  PCUIF__rach__ind(const PCUIF__Sapi& par_sapi,
    const INTEGER& par_ra,
    const INTEGER& par_qta,
    const INTEGER& par_fn,
    const INTEGER& par_arfcn,
    const INTEGER& par_is__11bit,
    const INTEGER& par_burst__type);
  PCUIF__rach__ind(const PCUIF__rach__ind& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  PCUIF__rach__ind& operator=(const PCUIF__rach__ind& other_value);
  boolean operator==(const PCUIF__rach__ind& other_value) const;
  inline boolean operator!=(const PCUIF__rach__ind& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

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

  inline PCUIF__Sapi& sapi()
    {return field_sapi;}
  inline const PCUIF__Sapi& sapi() const
    {return field_sapi;}
  inline INTEGER& ra()
    {return field_ra;}
  inline const INTEGER& ra() const
    {return field_ra;}
  inline INTEGER& qta()
    {return field_qta;}
  inline const INTEGER& qta() const
    {return field_qta;}
  inline INTEGER& fn()
    {return field_fn;}
  inline const INTEGER& fn() const
    {return field_fn;}
  inline INTEGER& arfcn()
    {return field_arfcn;}
  inline const INTEGER& arfcn() const
    {return field_arfcn;}
  inline INTEGER& is__11bit()
    {return field_is__11bit;}
  inline const INTEGER& is__11bit() const
    {return field_is__11bit;}
  inline INTEGER& burst__type()
    {return field_burst__type;}
  inline const INTEGER& burst__type() const
    {return field_burst__type;}
  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 PCUIF__rach__ind_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
PCUIF__rach__ind_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const PCUIF__rach__ind& other_value);
void copy_template(const PCUIF__rach__ind_template& other_value);

public:
PCUIF__rach__ind_template();
PCUIF__rach__ind_template(template_sel other_value);
PCUIF__rach__ind_template(const PCUIF__rach__ind& other_value);
PCUIF__rach__ind_template(const OPTIONAL<PCUIF__rach__ind>& other_value);
PCUIF__rach__ind_template(const PCUIF__rach__ind_template& other_value);
~PCUIF__rach__ind_template();
PCUIF__rach__ind_template& operator=(template_sel other_value);
PCUIF__rach__ind_template& operator=(const PCUIF__rach__ind& other_value);
PCUIF__rach__ind_template& operator=(const OPTIONAL<PCUIF__rach__ind>& other_value);
PCUIF__rach__ind_template& operator=(const PCUIF__rach__ind_template& other_value);
boolean match(const PCUIF__rach__ind& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
PCUIF__rach__ind valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
PCUIF__rach__ind_template& list_item(unsigned int list_index) const;
PCUIF__Sapi_template& sapi();
const PCUIF__Sapi_template& sapi() const;
INTEGER_template& ra();
const INTEGER_template& ra() const;
INTEGER_template& qta();
const INTEGER_template& qta() const;
INTEGER_template& fn();
const INTEGER_template& fn() const;
INTEGER_template& arfcn();
const INTEGER_template& arfcn() const;
INTEGER_template& is__11bit();
const INTEGER_template& is__11bit() const;
INTEGER_template& burst__type();
const INTEGER_template& burst__type() const;
int size_of() const;
void log() const;
void log_match(const PCUIF__rach__ind& 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 PCUIF__InfoTrx : public Base_Type {
  INTEGER field_arfcn;
  BITSTRING field_pdch__mask;
  OCTETSTRING field_spare;
  OCTETSTRING field_tsc;
  INTEGER field_hLayer1;
public:
  PCUIF__InfoTrx();
  PCUIF__InfoTrx(const INTEGER& par_arfcn,
    const BITSTRING& par_pdch__mask,
    const OCTETSTRING& par_spare,
    const OCTETSTRING& par_tsc,
    const INTEGER& par_hLayer1);
  PCUIF__InfoTrx(const PCUIF__InfoTrx& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  PCUIF__InfoTrx& operator=(const PCUIF__InfoTrx& other_value);
  boolean operator==(const PCUIF__InfoTrx& other_value) const;
  inline boolean operator!=(const PCUIF__InfoTrx& 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& arfcn()
    {return field_arfcn;}
  inline const INTEGER& arfcn() const
    {return field_arfcn;}
  inline BITSTRING& pdch__mask()
    {return field_pdch__mask;}
  inline const BITSTRING& pdch__mask() const
    {return field_pdch__mask;}
  inline OCTETSTRING& spare()
    {return field_spare;}
  inline const OCTETSTRING& spare() const
    {return field_spare;}
  inline OCTETSTRING& tsc()
    {return field_tsc;}
  inline const OCTETSTRING& tsc() const
    {return field_tsc;}
  inline INTEGER& hLayer1()
    {return field_hLayer1;}
  inline const INTEGER& hLayer1() const
    {return field_hLayer1;}
  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 PCUIF__InfoTrx_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
PCUIF__InfoTrx_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const PCUIF__InfoTrx& other_value);
void copy_template(const PCUIF__InfoTrx_template& other_value);

public:
PCUIF__InfoTrx_template();
PCUIF__InfoTrx_template(template_sel other_value);
PCUIF__InfoTrx_template(const PCUIF__InfoTrx& other_value);
PCUIF__InfoTrx_template(const OPTIONAL<PCUIF__InfoTrx>& other_value);
PCUIF__InfoTrx_template(const PCUIF__InfoTrx_template& other_value);
~PCUIF__InfoTrx_template();
PCUIF__InfoTrx_template& operator=(template_sel other_value);
PCUIF__InfoTrx_template& operator=(const PCUIF__InfoTrx& other_value);
PCUIF__InfoTrx_template& operator=(const OPTIONAL<PCUIF__InfoTrx>& other_value);
PCUIF__InfoTrx_template& operator=(const PCUIF__InfoTrx_template& other_value);
boolean match(const PCUIF__InfoTrx& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
PCUIF__InfoTrx valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
PCUIF__InfoTrx_template& list_item(unsigned int list_index) const;
INTEGER_template& arfcn();
const INTEGER_template& arfcn() const;
BITSTRING_template& pdch__mask();
const BITSTRING_template& pdch__mask() const;
OCTETSTRING_template& spare();
const OCTETSTRING_template& spare() const;
OCTETSTRING_template& tsc();
const OCTETSTRING_template& tsc() const;
INTEGER_template& hLayer1();
const INTEGER_template& hLayer1() const;
int size_of() const;
void log() const;
void log_match(const PCUIF__InfoTrx& 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 PCUIF__info__ind_trx : public Base_Type {
struct recordof_setof_struct {
int ref_count;
int n_elements;
PCUIF__InfoTrx **value_elements;
} *val_ptr;

static const PCUIF__InfoTrx UNBOUND_ELEM;
private:
friend boolean operator==(null_type null_value, const PCUIF__info__ind_trx& other_value);

public:
  typedef PCUIF__InfoTrx of_type;
PCUIF__info__ind_trx();
PCUIF__info__ind_trx(null_type other_value);
PCUIF__info__ind_trx(const PCUIF__info__ind_trx& other_value);
~PCUIF__info__ind_trx();

void clean_up();
PCUIF__info__ind_trx& operator=(null_type other_value);
PCUIF__info__ind_trx& operator=(const PCUIF__info__ind_trx& other_value);

boolean operator==(null_type other_value) const;
boolean operator==(const PCUIF__info__ind_trx& other_value) const;
inline boolean operator!=(null_type other_value) const { return !(*this == other_value); }
inline boolean operator!=(const PCUIF__info__ind_trx& other_value) const { return !(*this == other_value); }

PCUIF__InfoTrx& operator[](int index_value);
PCUIF__InfoTrx& operator[](const INTEGER& index_value);
const PCUIF__InfoTrx& operator[](int index_value) const;
const PCUIF__InfoTrx& operator[](const INTEGER& index_value) const;

PCUIF__info__ind_trx operator<<=(int rotate_count) const;
PCUIF__info__ind_trx operator<<=(const INTEGER& rotate_count) const;
PCUIF__info__ind_trx operator>>=(int rotate_count) const;
PCUIF__info__ind_trx operator>>=(const INTEGER& rotate_count) const;

PCUIF__info__ind_trx operator+(const PCUIF__info__ind_trx& other_value) const;

PCUIF__info__ind_trx substr(int index, int returncount) const;

PCUIF__info__ind_trx replace(int index, int len, const PCUIF__info__ind_trx& repl) const;

PCUIF__info__ind_trx replace(int index, int len, const PCUIF__info__ind_trx_template& repl) const;

void set_size(int new_size);
inline boolean is_bound() const {return val_ptr != NULL; }
inline boolean is_present() const { return is_bound(); }
boolean is_value() const;
int size_of() const;
int n_elem() const { return size_of(); }
int lengthof() 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 PCUIF__info__ind_trx_template : public Record_Of_Template {
union {
struct {
int n_elements;
PCUIF__InfoTrx_template **value_elements;
} single_value;
struct {
unsigned int n_values;
PCUIF__info__ind_trx_template *list_value;
} value_list;
};
void copy_value(const PCUIF__info__ind_trx& other_value);
void copy_template(const PCUIF__info__ind_trx_template& other_value);
static boolean match_function_specific(const Base_Type *value_ptr, int value_index, const Restricted_Length_Template *template_ptr, int template_index, boolean legacy);

public:
PCUIF__info__ind_trx_template();
PCUIF__info__ind_trx_template(template_sel other_value);
PCUIF__info__ind_trx_template(null_type other_value);
PCUIF__info__ind_trx_template(const PCUIF__info__ind_trx& other_value);
PCUIF__info__ind_trx_template(const OPTIONAL<PCUIF__info__ind_trx>& other_value);
PCUIF__info__ind_trx_template(const PCUIF__info__ind_trx_template& other_value);
~PCUIF__info__ind_trx_template();

void clean_up();
PCUIF__info__ind_trx_template& operator=(template_sel other_value);
PCUIF__info__ind_trx_template& operator=(null_type other_value);
PCUIF__info__ind_trx_template& operator=(const PCUIF__info__ind_trx& other_value);
PCUIF__info__ind_trx_template& operator=(const OPTIONAL<PCUIF__info__ind_trx>& other_value);
PCUIF__info__ind_trx_template& operator=(const PCUIF__info__ind_trx_template& other_value);

PCUIF__InfoTrx_template& operator[](int index_value);
PCUIF__InfoTrx_template& operator[](const INTEGER& index_value);
const PCUIF__InfoTrx_template& operator[](int index_value) const;
const PCUIF__InfoTrx_template& operator[](const INTEGER& index_value) const;

void set_size(int new_size);
int n_elem() const;
int size_of(boolean is_size) const;
inline int size_of() const { return size_of(TRUE); }
inline int lengthof() const { return size_of(FALSE); }
boolean match(const PCUIF__info__ind_trx& other_value, boolean legacy = FALSE) const;
inline boolean is_bound() const 
  {return template_selection != UNINITIALIZED_TEMPLATE; }
boolean is_value() const;
PCUIF__info__ind_trx valueof() const;
PCUIF__info__ind_trx substr(int index, int returncount) const;

PCUIF__info__ind_trx replace(int index, int len, const PCUIF__info__ind_trx_template& repl) const;

PCUIF__info__ind_trx replace(int index, int len, const PCUIF__info__ind_trx& repl) const;

void set_type(template_sel template_type, unsigned int list_length);
PCUIF__info__ind_trx_template& list_item(unsigned int list_index);
void log() const;
void log_match(const PCUIF__info__ind_trx& 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;
boolean get_istemplate_kind(const char* type) const;
};

class PCUIF__info__ind : public Base_Type {
  INTEGER field_version;
  PCUIF__Flags field_flags;
  PCUIF__info__ind_trx field_trx;
  INTEGER field_bsic;
  INTEGER field_mcc;
  INTEGER field_mnc;
  INTEGER field_mnc__3__digits;
  INTEGER field_lac;
  INTEGER field_rac;
  INTEGER field_nsei;
  PCUIF__info__ind_nse__timer field_nse__timer;
  PCUIF__info__ind_cell__timer field_cell__timer;
  INTEGER field_cell__id;
  INTEGER field_repeat__time;
  INTEGER field_repeat__count;
  INTEGER field_bvci;
  INTEGER field_t3142;
  INTEGER field_t3169;
  INTEGER field_t3191;
  INTEGER field_t3193__10ms;
  INTEGER field_t3195;
  INTEGER field_t3101;
  INTEGER field_t3103;
  INTEGER field_t3105;
  INTEGER field_cv__countdown;
  INTEGER field_dl__tbf__ext;
  INTEGER field_ul__tbf__ext;
  INTEGER field_initial__cs;
  INTEGER field_initial__mcs;
  PCUIF__info__ind_nsvci field_nsvci;
  PCUIF__info__ind_local__pprt field_local__pprt;
  PCUIF__info__ind_remote__port field_remote__port;
  PCUIF__info__ind_remote__ip field_remote__ip;
public:
  PCUIF__info__ind();
  PCUIF__info__ind(const INTEGER& par_version,
    const PCUIF__Flags& par_flags,
    const PCUIF__info__ind_trx& par_trx,
    const INTEGER& par_bsic,
    const INTEGER& par_mcc,
    const INTEGER& par_mnc,
    const INTEGER& par_mnc__3__digits,
    const INTEGER& par_lac,
    const INTEGER& par_rac,
    const INTEGER& par_nsei,
    const PCUIF__info__ind_nse__timer& par_nse__timer,
    const PCUIF__info__ind_cell__timer& par_cell__timer,
    const INTEGER& par_cell__id,
    const INTEGER& par_repeat__time,
    const INTEGER& par_repeat__count,
    const INTEGER& par_bvci,
    const INTEGER& par_t3142,
    const INTEGER& par_t3169,
    const INTEGER& par_t3191,
    const INTEGER& par_t3193__10ms,
    const INTEGER& par_t3195,
    const INTEGER& par_t3101,
    const INTEGER& par_t3103,
    const INTEGER& par_t3105,
    const INTEGER& par_cv__countdown,
    const INTEGER& par_dl__tbf__ext,
    const INTEGER& par_ul__tbf__ext,
    const INTEGER& par_initial__cs,
    const INTEGER& par_initial__mcs,
    const PCUIF__info__ind_nsvci& par_nsvci,
    const PCUIF__info__ind_local__pprt& par_local__pprt,
    const PCUIF__info__ind_remote__port& par_remote__port,
    const PCUIF__info__ind_remote__ip& par_remote__ip);
  PCUIF__info__ind(const PCUIF__info__ind& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  PCUIF__info__ind& operator=(const PCUIF__info__ind& other_value);
  boolean operator==(const PCUIF__info__ind& other_value) const;
  inline boolean operator!=(const PCUIF__info__ind& 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 PCUIF__Flags& flags()
    {return field_flags;}
  inline const PCUIF__Flags& flags() const
    {return field_flags;}
  inline PCUIF__info__ind_trx& trx()
    {return field_trx;}
  inline const PCUIF__info__ind_trx& trx() const
    {return field_trx;}
  inline INTEGER& bsic()
    {return field_bsic;}
  inline const INTEGER& bsic() const
    {return field_bsic;}
  inline INTEGER& mcc()
    {return field_mcc;}
  inline const INTEGER& mcc() const
    {return field_mcc;}
  inline INTEGER& mnc()
    {return field_mnc;}
  inline const INTEGER& mnc() const
    {return field_mnc;}
  inline INTEGER& mnc__3__digits()
    {return field_mnc__3__digits;}
  inline const INTEGER& mnc__3__digits() const
    {return field_mnc__3__digits;}
  inline INTEGER& lac()
    {return field_lac;}
  inline const INTEGER& lac() const
    {return field_lac;}
  inline INTEGER& rac()
    {return field_rac;}
  inline const INTEGER& rac() const
    {return field_rac;}
  inline INTEGER& nsei()
    {return field_nsei;}
  inline const INTEGER& nsei() const
    {return field_nsei;}
  inline PCUIF__info__ind_nse__timer& nse__timer()
    {return field_nse__timer;}
  inline const PCUIF__info__ind_nse__timer& nse__timer() const
    {return field_nse__timer;}
  inline PCUIF__info__ind_cell__timer& cell__timer()
    {return field_cell__timer;}
  inline const PCUIF__info__ind_cell__timer& cell__timer() const
    {return field_cell__timer;}
  inline INTEGER& cell__id()
    {return field_cell__id;}
  inline const INTEGER& cell__id() const
    {return field_cell__id;}
  inline INTEGER& repeat__time()
    {return field_repeat__time;}
  inline const INTEGER& repeat__time() const
    {return field_repeat__time;}
  inline INTEGER& repeat__count()
    {return field_repeat__count;}
  inline const INTEGER& repeat__count() const
    {return field_repeat__count;}
  inline INTEGER& bvci()
    {return field_bvci;}
  inline const INTEGER& bvci() const
    {return field_bvci;}
  inline INTEGER& t3142()
    {return field_t3142;}
  inline const INTEGER& t3142() const
    {return field_t3142;}
  inline INTEGER& t3169()
    {return field_t3169;}
  inline const INTEGER& t3169() const
    {return field_t3169;}
  inline INTEGER& t3191()
    {return field_t3191;}
  inline const INTEGER& t3191() const
    {return field_t3191;}
  inline INTEGER& t3193__10ms()
    {return field_t3193__10ms;}
  inline const INTEGER& t3193__10ms() const
    {return field_t3193__10ms;}
  inline INTEGER& t3195()
    {return field_t3195;}
  inline const INTEGER& t3195() const
    {return field_t3195;}
  inline INTEGER& t3101()
    {return field_t3101;}
  inline const INTEGER& t3101() const
    {return field_t3101;}
  inline INTEGER& t3103()
    {return field_t3103;}
  inline const INTEGER& t3103() const
    {return field_t3103;}
  inline INTEGER& t3105()
    {return field_t3105;}
  inline const INTEGER& t3105() const
    {return field_t3105;}
  inline INTEGER& cv__countdown()
    {return field_cv__countdown;}
  inline const INTEGER& cv__countdown() const
    {return field_cv__countdown;}
  inline INTEGER& dl__tbf__ext()
    {return field_dl__tbf__ext;}
  inline const INTEGER& dl__tbf__ext() const
    {return field_dl__tbf__ext;}
  inline INTEGER& ul__tbf__ext()
    {return field_ul__tbf__ext;}
  inline const INTEGER& ul__tbf__ext() const
    {return field_ul__tbf__ext;}
  inline INTEGER& initial__cs()
    {return field_initial__cs;}
  inline const INTEGER& initial__cs() const
    {return field_initial__cs;}
  inline INTEGER& initial__mcs()
    {return field_initial__mcs;}
  inline const INTEGER& initial__mcs() const
    {return field_initial__mcs;}
  inline PCUIF__info__ind_nsvci& nsvci()
    {return field_nsvci;}
  inline const PCUIF__info__ind_nsvci& nsvci() const
    {return field_nsvci;}
  inline PCUIF__info__ind_local__pprt& local__pprt()
    {return field_local__pprt;}
  inline const PCUIF__info__ind_local__pprt& local__pprt() const
    {return field_local__pprt;}
  inline PCUIF__info__ind_remote__port& remote__port()
    {return field_remote__port;}
  inline const PCUIF__info__ind_remote__port& remote__port() const
    {return field_remote__port;}
  inline PCUIF__info__ind_remote__ip& remote__ip()
    {return field_remote__ip;}
  inline const PCUIF__info__ind_remote__ip& remote__ip() const
    {return field_remote__ip;}
  inline int size_of() const
    {return 33;}
  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 PCUIF__info__ind_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
PCUIF__info__ind_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const PCUIF__info__ind& other_value);
void copy_template(const PCUIF__info__ind_template& other_value);

public:
PCUIF__info__ind_template();
PCUIF__info__ind_template(template_sel other_value);
PCUIF__info__ind_template(const PCUIF__info__ind& other_value);
PCUIF__info__ind_template(const OPTIONAL<PCUIF__info__ind>& other_value);
PCUIF__info__ind_template(const PCUIF__info__ind_template& other_value);
~PCUIF__info__ind_template();
PCUIF__info__ind_template& operator=(template_sel other_value);
PCUIF__info__ind_template& operator=(const PCUIF__info__ind& other_value);
PCUIF__info__ind_template& operator=(const OPTIONAL<PCUIF__info__ind>& other_value);
PCUIF__info__ind_template& operator=(const PCUIF__info__ind_template& other_value);
boolean match(const PCUIF__info__ind& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
PCUIF__info__ind valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
PCUIF__info__ind_template& list_item(unsigned int list_index) const;
INTEGER_template& version();
const INTEGER_template& version() const;
PCUIF__Flags_template& flags();
const PCUIF__Flags_template& flags() const;
PCUIF__info__ind_trx_template& trx();
const PCUIF__info__ind_trx_template& trx() const;
INTEGER_template& bsic();
const INTEGER_template& bsic() const;
INTEGER_template& mcc();
const INTEGER_template& mcc() const;
INTEGER_template& mnc();
const INTEGER_template& mnc() const;
INTEGER_template& mnc__3__digits();
const INTEGER_template& mnc__3__digits() const;
INTEGER_template& lac();
const INTEGER_template& lac() const;
INTEGER_template& rac();
const INTEGER_template& rac() const;
INTEGER_template& nsei();
const INTEGER_template& nsei() const;
PCUIF__info__ind_nse__timer_template& nse__timer();
const PCUIF__info__ind_nse__timer_template& nse__timer() const;
PCUIF__info__ind_cell__timer_template& cell__timer();
const PCUIF__info__ind_cell__timer_template& cell__timer() const;
INTEGER_template& cell__id();
const INTEGER_template& cell__id() const;
INTEGER_template& repeat__time();
const INTEGER_template& repeat__time() const;
INTEGER_template& repeat__count();
const INTEGER_template& repeat__count() const;
INTEGER_template& bvci();
const INTEGER_template& bvci() const;
INTEGER_template& t3142();
const INTEGER_template& t3142() const;
INTEGER_template& t3169();
const INTEGER_template& t3169() const;
INTEGER_template& t3191();
const INTEGER_template& t3191() const;
INTEGER_template& t3193__10ms();
const INTEGER_template& t3193__10ms() const;
INTEGER_template& t3195();
const INTEGER_template& t3195() const;
INTEGER_template& t3101();
const INTEGER_template& t3101() const;
INTEGER_template& t3103();
const INTEGER_template& t3103() const;
INTEGER_template& t3105();
const INTEGER_template& t3105() const;
INTEGER_template& cv__countdown();
const INTEGER_template& cv__countdown() const;
INTEGER_template& dl__tbf__ext();
const INTEGER_template& dl__tbf__ext() const;
INTEGER_template& ul__tbf__ext();
const INTEGER_template& ul__tbf__ext() const;
INTEGER_template& initial__cs();
const INTEGER_template& initial__cs() const;
INTEGER_template& initial__mcs();
const INTEGER_template& initial__mcs() const;
PCUIF__info__ind_nsvci_template& nsvci();
const PCUIF__info__ind_nsvci_template& nsvci() const;
PCUIF__info__ind_local__pprt_template& local__pprt();
const PCUIF__info__ind_local__pprt_template& local__pprt() const;
PCUIF__info__ind_remote__port_template& remote__port();
const PCUIF__info__ind_remote__port_template& remote__port() const;
PCUIF__info__ind_remote__ip_template& remote__ip();
const PCUIF__info__ind_remote__ip_template& remote__ip() const;
int size_of() const;
void log() const;
void log_match(const PCUIF__info__ind& 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 PCUIF__act__req : public Base_Type {
  INTEGER field_is__activate;
  INTEGER field_trx__nr;
  INTEGER field_ts__nr;
  OCTETSTRING field_spare;
public:
  PCUIF__act__req();
  PCUIF__act__req(const INTEGER& par_is__activate,
    const INTEGER& par_trx__nr,
    const INTEGER& par_ts__nr,
    const OCTETSTRING& par_spare);
  PCUIF__act__req(const PCUIF__act__req& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  PCUIF__act__req& operator=(const PCUIF__act__req& other_value);
  boolean operator==(const PCUIF__act__req& other_value) const;
  inline boolean operator!=(const PCUIF__act__req& 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& is__activate()
    {return field_is__activate;}
  inline const INTEGER& is__activate() const
    {return field_is__activate;}
  inline INTEGER& trx__nr()
    {return field_trx__nr;}
  inline const INTEGER& trx__nr() const
    {return field_trx__nr;}
  inline INTEGER& ts__nr()
    {return field_ts__nr;}
  inline const INTEGER& ts__nr() const
    {return field_ts__nr;}
  inline OCTETSTRING& spare()
    {return field_spare;}
  inline const OCTETSTRING& spare() const
    {return field_spare;}
  inline int size_of() const
    {return 4;}
  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 PCUIF__act__req_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
PCUIF__act__req_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const PCUIF__act__req& other_value);
void copy_template(const PCUIF__act__req_template& other_value);

public:
PCUIF__act__req_template();
PCUIF__act__req_template(template_sel other_value);
PCUIF__act__req_template(const PCUIF__act__req& other_value);
PCUIF__act__req_template(const OPTIONAL<PCUIF__act__req>& other_value);
PCUIF__act__req_template(const PCUIF__act__req_template& other_value);
~PCUIF__act__req_template();
PCUIF__act__req_template& operator=(template_sel other_value);
PCUIF__act__req_template& operator=(const PCUIF__act__req& other_value);
PCUIF__act__req_template& operator=(const OPTIONAL<PCUIF__act__req>& other_value);
PCUIF__act__req_template& operator=(const PCUIF__act__req_template& other_value);
boolean match(const PCUIF__act__req& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
PCUIF__act__req valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
PCUIF__act__req_template& list_item(unsigned int list_index) const;
INTEGER_template& is__activate();
const INTEGER_template& is__activate() const;
INTEGER_template& trx__nr();
const INTEGER_template& trx__nr() const;
INTEGER_template& ts__nr();
const INTEGER_template& ts__nr() const;
OCTETSTRING_template& spare();
const OCTETSTRING_template& spare() const;
int size_of() const;
void log() const;
void log_match(const PCUIF__act__req& 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 PCUIF__time__ind : public Base_Type {
  INTEGER field_fn;
public:
  PCUIF__time__ind();
  PCUIF__time__ind(const INTEGER& par_fn);
  PCUIF__time__ind(const PCUIF__time__ind& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  PCUIF__time__ind& operator=(const PCUIF__time__ind& other_value);
  boolean operator==(const PCUIF__time__ind& other_value) const;
  inline boolean operator!=(const PCUIF__time__ind& 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& fn()
    {return field_fn;}
  inline const INTEGER& fn() const
    {return field_fn;}
  inline int size_of() const
    {return 1;}
  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 PCUIF__time__ind_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
PCUIF__time__ind_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const PCUIF__time__ind& other_value);
void copy_template(const PCUIF__time__ind_template& other_value);

public:
PCUIF__time__ind_template();
PCUIF__time__ind_template(template_sel other_value);
PCUIF__time__ind_template(const PCUIF__time__ind& other_value);
PCUIF__time__ind_template(const OPTIONAL<PCUIF__time__ind>& other_value);
PCUIF__time__ind_template(const PCUIF__time__ind_template& other_value);
~PCUIF__time__ind_template();
PCUIF__time__ind_template& operator=(template_sel other_value);
PCUIF__time__ind_template& operator=(const PCUIF__time__ind& other_value);
PCUIF__time__ind_template& operator=(const OPTIONAL<PCUIF__time__ind>& other_value);
PCUIF__time__ind_template& operator=(const PCUIF__time__ind_template& other_value);
boolean match(const PCUIF__time__ind& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
PCUIF__time__ind valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
PCUIF__time__ind_template& list_item(unsigned int list_index) const;
INTEGER_template& fn();
const INTEGER_template& fn() const;
int size_of() const;
void log() const;
void log_match(const PCUIF__time__ind& 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 PCUIF__pag__req : public Base_Type {
  PCUIF__Sapi field_sapi;
  INTEGER field_chan__needed;
  OCTETSTRING field_identity__lv;
public:
  PCUIF__pag__req();
  PCUIF__pag__req(const PCUIF__Sapi& par_sapi,
    const INTEGER& par_chan__needed,
    const OCTETSTRING& par_identity__lv);
  PCUIF__pag__req(const PCUIF__pag__req& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  PCUIF__pag__req& operator=(const PCUIF__pag__req& other_value);
  boolean operator==(const PCUIF__pag__req& other_value) const;
  inline boolean operator!=(const PCUIF__pag__req& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

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

  inline PCUIF__Sapi& sapi()
    {return field_sapi;}
  inline const PCUIF__Sapi& sapi() const
    {return field_sapi;}
  inline INTEGER& chan__needed()
    {return field_chan__needed;}
  inline const INTEGER& chan__needed() const
    {return field_chan__needed;}
  inline OCTETSTRING& identity__lv()
    {return field_identity__lv;}
  inline const OCTETSTRING& identity__lv() const
    {return field_identity__lv;}
  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 PCUIF__pag__req_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
PCUIF__pag__req_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const PCUIF__pag__req& other_value);
void copy_template(const PCUIF__pag__req_template& other_value);

public:
PCUIF__pag__req_template();
PCUIF__pag__req_template(template_sel other_value);
PCUIF__pag__req_template(const PCUIF__pag__req& other_value);
PCUIF__pag__req_template(const OPTIONAL<PCUIF__pag__req>& other_value);
PCUIF__pag__req_template(const PCUIF__pag__req_template& other_value);
~PCUIF__pag__req_template();
PCUIF__pag__req_template& operator=(template_sel other_value);
PCUIF__pag__req_template& operator=(const PCUIF__pag__req& other_value);
PCUIF__pag__req_template& operator=(const OPTIONAL<PCUIF__pag__req>& other_value);
PCUIF__pag__req_template& operator=(const PCUIF__pag__req_template& other_value);
boolean match(const PCUIF__pag__req& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
PCUIF__pag__req valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
PCUIF__pag__req_template& list_item(unsigned int list_index) const;
PCUIF__Sapi_template& sapi();
const PCUIF__Sapi_template& sapi() const;
INTEGER_template& chan__needed();
const INTEGER_template& chan__needed() const;
OCTETSTRING_template& identity__lv();
const OCTETSTRING_template& identity__lv() const;
int size_of() const;
void log() const;
void log_match(const PCUIF__pag__req& 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 PCUIF__susp__req : public Base_Type {
  OCTETSTRING field_tlli;
  OCTETSTRING field_ra__id;
  INTEGER field_cause;
public:
  PCUIF__susp__req();
  PCUIF__susp__req(const OCTETSTRING& par_tlli,
    const OCTETSTRING& par_ra__id,
    const INTEGER& par_cause);
  PCUIF__susp__req(const PCUIF__susp__req& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  PCUIF__susp__req& operator=(const PCUIF__susp__req& other_value);
  boolean operator==(const PCUIF__susp__req& other_value) const;
  inline boolean operator!=(const PCUIF__susp__req& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

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

  inline OCTETSTRING& tlli()
    {return field_tlli;}
  inline const OCTETSTRING& tlli() const
    {return field_tlli;}
  inline OCTETSTRING& ra__id()
    {return field_ra__id;}
  inline const OCTETSTRING& ra__id() const
    {return field_ra__id;}
  inline INTEGER& cause()
    {return field_cause;}
  inline const INTEGER& cause() const
    {return field_cause;}
  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 PCUIF__susp__req_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
PCUIF__susp__req_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const PCUIF__susp__req& other_value);
void copy_template(const PCUIF__susp__req_template& other_value);

public:
PCUIF__susp__req_template();
PCUIF__susp__req_template(template_sel other_value);
PCUIF__susp__req_template(const PCUIF__susp__req& other_value);
PCUIF__susp__req_template(const OPTIONAL<PCUIF__susp__req>& other_value);
PCUIF__susp__req_template(const PCUIF__susp__req_template& other_value);
~PCUIF__susp__req_template();
PCUIF__susp__req_template& operator=(template_sel other_value);
PCUIF__susp__req_template& operator=(const PCUIF__susp__req& other_value);
PCUIF__susp__req_template& operator=(const OPTIONAL<PCUIF__susp__req>& other_value);
PCUIF__susp__req_template& operator=(const PCUIF__susp__req_template& other_value);
boolean match(const PCUIF__susp__req& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
PCUIF__susp__req valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
PCUIF__susp__req_template& list_item(unsigned int list_index) const;
OCTETSTRING_template& tlli();
const OCTETSTRING_template& tlli() const;
OCTETSTRING_template& ra__id();
const OCTETSTRING_template& ra__id() const;
INTEGER_template& cause();
const INTEGER_template& cause() const;
int size_of() const;
void log() const;
void log_match(const PCUIF__susp__req& 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 PCUIF__MsgUnion : public Base_Type {
public:
enum union_selection_type { UNBOUND_VALUE = 0, ALT_data__req = 1, ALT_data__cnf = 2, ALT_data__cnf__dt = 3, ALT_data__ind = 4, ALT_susp__req = 5, ALT_rts__req = 6, ALT_rach__ind = 7, ALT_txt__ind = 8, ALT_info__ind = 9, ALT_act__req = 10, ALT_time__ind = 11, ALT_pag__req = 12 };
private:
union_selection_type union_selection;
union {
PCUIF__data *field_data__req;
PCUIF__data *field_data__cnf;
PCUIF__data__cnf__dt *field_data__cnf__dt;
PCUIF__data *field_data__ind;
PCUIF__susp__req *field_susp__req;
PCUIF__rts__req *field_rts__req;
PCUIF__rach__ind *field_rach__ind;
PCUIF__txt__ind *field_txt__ind;
PCUIF__info__ind *field_info__ind;
PCUIF__act__req *field_act__req;
PCUIF__time__ind *field_time__ind;
PCUIF__pag__req *field_pag__req;
};
void copy_value(const PCUIF__MsgUnion& other_value);

public:
PCUIF__MsgUnion();
PCUIF__MsgUnion(const PCUIF__MsgUnion& other_value);
~PCUIF__MsgUnion();
PCUIF__MsgUnion& operator=(const PCUIF__MsgUnion& other_value);
boolean operator==(const PCUIF__MsgUnion& other_value) const;
inline boolean operator!=(const PCUIF__MsgUnion& other_value) const { return !(*this == other_value); }
PCUIF__data& data__req();
const PCUIF__data& data__req() const;
PCUIF__data& data__cnf();
const PCUIF__data& data__cnf() const;
PCUIF__data__cnf__dt& data__cnf__dt();
const PCUIF__data__cnf__dt& data__cnf__dt() const;
PCUIF__data& data__ind();
const PCUIF__data& data__ind() const;
PCUIF__susp__req& susp__req();
const PCUIF__susp__req& susp__req() const;
PCUIF__rts__req& rts__req();
const PCUIF__rts__req& rts__req() const;
PCUIF__rach__ind& rach__ind();
const PCUIF__rach__ind& rach__ind() const;
PCUIF__txt__ind& txt__ind();
const PCUIF__txt__ind& txt__ind() const;
PCUIF__info__ind& info__ind();
const PCUIF__info__ind& info__ind() const;
PCUIF__act__req& act__req();
const PCUIF__act__req& act__req() const;
PCUIF__time__ind& time__ind();
const PCUIF__time__ind& time__ind() const;
PCUIF__pag__req& pag__req();
const PCUIF__pag__req& pag__req() 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 PCUIF__MsgUnion_template : public Base_Template {
union {
struct {
PCUIF__MsgUnion::union_selection_type union_selection;
union {
PCUIF__data_template *field_data__req;
PCUIF__data_template *field_data__cnf;
PCUIF__data__cnf__dt_template *field_data__cnf__dt;
PCUIF__data_template *field_data__ind;
PCUIF__susp__req_template *field_susp__req;
PCUIF__rts__req_template *field_rts__req;
PCUIF__rach__ind_template *field_rach__ind;
PCUIF__txt__ind_template *field_txt__ind;
PCUIF__info__ind_template *field_info__ind;
PCUIF__act__req_template *field_act__req;
PCUIF__time__ind_template *field_time__ind;
PCUIF__pag__req_template *field_pag__req;
};
} single_value;
struct {
unsigned int n_values;
PCUIF__MsgUnion_template *list_value;
} value_list;
};
void copy_value(const PCUIF__MsgUnion& other_value);

void copy_template(const PCUIF__MsgUnion_template& other_value);

public:
PCUIF__MsgUnion_template();
PCUIF__MsgUnion_template(template_sel other_value);
PCUIF__MsgUnion_template(const PCUIF__MsgUnion& other_value);
PCUIF__MsgUnion_template(const OPTIONAL<PCUIF__MsgUnion>& other_value);
PCUIF__MsgUnion_template(const PCUIF__MsgUnion_template& other_value);
~PCUIF__MsgUnion_template();
void clean_up();
PCUIF__MsgUnion_template& operator=(template_sel other_value);
PCUIF__MsgUnion_template& operator=(const PCUIF__MsgUnion& other_value);
PCUIF__MsgUnion_template& operator=(const OPTIONAL<PCUIF__MsgUnion>& other_value);
PCUIF__MsgUnion_template& operator=(const PCUIF__MsgUnion_template& other_value);
boolean match(const PCUIF__MsgUnion& other_value, boolean legacy = FALSE) const;
boolean is_value() const;PCUIF__MsgUnion valueof() const;
PCUIF__MsgUnion_template& list_item(unsigned int list_index) const;
void set_type(template_sel template_type, unsigned int list_length);
PCUIF__data_template& data__req();
const PCUIF__data_template& data__req() const;
PCUIF__data_template& data__cnf();
const PCUIF__data_template& data__cnf() const;
PCUIF__data__cnf__dt_template& data__cnf__dt();
const PCUIF__data__cnf__dt_template& data__cnf__dt() const;
PCUIF__data_template& data__ind();
const PCUIF__data_template& data__ind() const;
PCUIF__susp__req_template& susp__req();
const PCUIF__susp__req_template& susp__req() const;
PCUIF__rts__req_template& rts__req();
const PCUIF__rts__req_template& rts__req() const;
PCUIF__rach__ind_template& rach__ind();
const PCUIF__rach__ind_template& rach__ind() const;
PCUIF__txt__ind_template& txt__ind();
const PCUIF__txt__ind_template& txt__ind() const;
PCUIF__info__ind_template& info__ind();
const PCUIF__info__ind_template& info__ind() const;
PCUIF__act__req_template& act__req();
const PCUIF__act__req_template& act__req() const;
PCUIF__time__ind_template& time__ind();
const PCUIF__time__ind_template& time__ind() const;
PCUIF__pag__req_template& pag__req();
const PCUIF__pag__req_template& pag__req() const;
boolean ischosen(PCUIF__MsgUnion::union_selection_type checked_selection) const;
void log() const;
void log_match(const PCUIF__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 PCUIF__Message : public Base_Type {
  PCUIF__MsgType field_msg__type;
  INTEGER field_bts__nr;
  OCTETSTRING field_spare;
  PCUIF__MsgUnion field_u;
public:
  PCUIF__Message();
  PCUIF__Message(const PCUIF__MsgType& par_msg__type,
    const INTEGER& par_bts__nr,
    const OCTETSTRING& par_spare,
    const PCUIF__MsgUnion& par_u);
  PCUIF__Message(const PCUIF__Message& other_value);
  inline boolean is_component() { return FALSE; }
  void clean_up();
  PCUIF__Message& operator=(const PCUIF__Message& other_value);
  boolean operator==(const PCUIF__Message& other_value) const;
  inline boolean operator!=(const PCUIF__Message& other_value) const
    { return !(*this == other_value); }

  boolean is_bound() const;

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

  inline PCUIF__MsgType& msg__type()
    {return field_msg__type;}
  inline const PCUIF__MsgType& msg__type() const
    {return field_msg__type;}
  inline INTEGER& bts__nr()
    {return field_bts__nr;}
  inline const INTEGER& bts__nr() const
    {return field_bts__nr;}
  inline OCTETSTRING& spare()
    {return field_spare;}
  inline const OCTETSTRING& spare() const
    {return field_spare;}
  inline PCUIF__MsgUnion& u()
    {return field_u;}
  inline const PCUIF__MsgUnion& u() const
    {return field_u;}
  inline int size_of() const
    {return 4;}
  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 PCUIF__Message_template : public Base_Template {
struct single_value_struct;
union {
single_value_struct *single_value;
struct {
unsigned int n_values;
PCUIF__Message_template *list_value;
} value_list;
};

void set_specific();
void copy_value(const PCUIF__Message& other_value);
void copy_template(const PCUIF__Message_template& other_value);

public:
PCUIF__Message_template();
PCUIF__Message_template(template_sel other_value);
PCUIF__Message_template(const PCUIF__Message& other_value);
PCUIF__Message_template(const OPTIONAL<PCUIF__Message>& other_value);
PCUIF__Message_template(const PCUIF__Message_template& other_value);
~PCUIF__Message_template();
PCUIF__Message_template& operator=(template_sel other_value);
PCUIF__Message_template& operator=(const PCUIF__Message& other_value);
PCUIF__Message_template& operator=(const OPTIONAL<PCUIF__Message>& other_value);
PCUIF__Message_template& operator=(const PCUIF__Message_template& other_value);
boolean match(const PCUIF__Message& other_value, boolean legacy = FALSE) const;
boolean is_bound() const;
boolean is_value() const;
void clean_up();
PCUIF__Message valueof() const;
void set_type(template_sel template_type, unsigned int list_length);
PCUIF__Message_template& list_item(unsigned int list_index) const;
PCUIF__MsgType_template& msg__type();
const PCUIF__MsgType_template& msg__type() const;
INTEGER_template& bts__nr();
const INTEGER_template& bts__nr() const;
OCTETSTRING_template& spare();
const OCTETSTRING_template& spare() const;
PCUIF__MsgUnion_template& u();
const PCUIF__MsgUnion_template& u() const;
int size_of() const;
void log() const;
void log_match(const PCUIF__Message& 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 PCUIF__MsgType_encoder(const PCUIF__MsgType& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__MsgType_decoder(OCTETSTRING& input_stream, PCUIF__MsgType& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Sapi_encoder(const PCUIF__Sapi& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Sapi_decoder(OCTETSTRING& input_stream, PCUIF__Sapi& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Flags_bts__active_encoder(const BOOLEAN& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Flags_bts__active_decoder(OCTETSTRING& input_stream, BOOLEAN& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Flags_sysmo__direct__dsp_encoder(const BOOLEAN& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Flags_sysmo__direct__dsp_decoder(OCTETSTRING& input_stream, BOOLEAN& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Flags_spare_encoder(const BITSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Flags_spare_decoder(OCTETSTRING& input_stream, BITSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Flags_cs1_encoder(const BOOLEAN& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Flags_cs1_decoder(OCTETSTRING& input_stream, BOOLEAN& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Flags_cs2_encoder(const BOOLEAN& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Flags_cs2_decoder(OCTETSTRING& input_stream, BOOLEAN& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Flags_cs3_encoder(const BOOLEAN& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Flags_cs3_decoder(OCTETSTRING& input_stream, BOOLEAN& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Flags_cs4_encoder(const BOOLEAN& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Flags_cs4_decoder(OCTETSTRING& input_stream, BOOLEAN& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Flags_mcs1_encoder(const BOOLEAN& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Flags_mcs1_decoder(OCTETSTRING& input_stream, BOOLEAN& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Flags_mcs2_encoder(const BOOLEAN& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Flags_mcs2_decoder(OCTETSTRING& input_stream, BOOLEAN& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Flags_mcs3_encoder(const BOOLEAN& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Flags_mcs3_decoder(OCTETSTRING& input_stream, BOOLEAN& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Flags_mcs4_encoder(const BOOLEAN& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Flags_mcs4_decoder(OCTETSTRING& input_stream, BOOLEAN& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Flags_mcs5_encoder(const BOOLEAN& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Flags_mcs5_decoder(OCTETSTRING& input_stream, BOOLEAN& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Flags_mcs6_encoder(const BOOLEAN& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Flags_mcs6_decoder(OCTETSTRING& input_stream, BOOLEAN& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Flags_mcs7_encoder(const BOOLEAN& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Flags_mcs7_decoder(OCTETSTRING& input_stream, BOOLEAN& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Flags_mcs8_encoder(const BOOLEAN& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Flags_mcs8_decoder(OCTETSTRING& input_stream, BOOLEAN& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Flags_mcs9_encoder(const BOOLEAN& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Flags_mcs9_decoder(OCTETSTRING& input_stream, BOOLEAN& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Flags_spare2_encoder(const BITSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Flags_spare2_decoder(OCTETSTRING& input_stream, BITSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Flags_encoder(const PCUIF__Flags& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Flags_decoder(OCTETSTRING& input_stream, PCUIF__Flags& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__TextType_encoder(const PCUIF__TextType& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__TextType_decoder(OCTETSTRING& input_stream, PCUIF__TextType& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Text_encoder(const CHARSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Text_decoder(OCTETSTRING& input_stream, CHARSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__txt__ind_txt__type_encoder(const PCUIF__TextType& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__txt__ind_txt__type_decoder(OCTETSTRING& input_stream, PCUIF__TextType& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__txt__ind_text_encoder(const CHARSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__txt__ind_text_decoder(OCTETSTRING& input_stream, CHARSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__txt__ind_encoder(const PCUIF__txt__ind& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__txt__ind_decoder(OCTETSTRING& input_stream, PCUIF__txt__ind& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void OCT162_encoder(const OCTETSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER OCT162_decoder(OCTETSTRING& input_stream, OCTETSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data_sapi_encoder(const PCUIF__Sapi& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data_sapi_decoder(OCTETSTRING& input_stream, PCUIF__Sapi& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data_len_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data_len_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data_data_encoder(const OCTETSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data_data_decoder(OCTETSTRING& input_stream, OCTETSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data_fn_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data_fn_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data_arfcn_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data_arfcn_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data_trx__nr_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data_trx__nr_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data_ts__nr_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data_ts__nr_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data_block__nr_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data_block__nr_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data_rssi_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data_rssi_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data_ber10k_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data_ber10k_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data_ta__offs__qbits_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data_ta__offs__qbits_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data_lqual__cb_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data_lqual__cb_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data_encoder(const PCUIF__data& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data_decoder(OCTETSTRING& input_stream, PCUIF__data& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data__cnf__dt_sapi_encoder(const PCUIF__Sapi& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data__cnf__dt_sapi_decoder(OCTETSTRING& input_stream, PCUIF__Sapi& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data__cnf__dt_tlli_encoder(const OCTETSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data__cnf__dt_tlli_decoder(OCTETSTRING& input_stream, OCTETSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data__cnf__dt_fn_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data__cnf__dt_fn_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data__cnf__dt_arfcn_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data__cnf__dt_arfcn_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data__cnf__dt_trx__nr_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data__cnf__dt_trx__nr_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data__cnf__dt_ts__nr_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data__cnf__dt_ts__nr_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data__cnf__dt_block__nr_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data__cnf__dt_block__nr_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data__cnf__dt_rssi_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data__cnf__dt_rssi_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data__cnf__dt_ber10k_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data__cnf__dt_ber10k_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data__cnf__dt_ta__offs__qbits_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data__cnf__dt_ta__offs__qbits_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data__cnf__dt_lqual__cb_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data__cnf__dt_lqual__cb_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__data__cnf__dt_encoder(const PCUIF__data__cnf__dt& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__data__cnf__dt_decoder(OCTETSTRING& input_stream, PCUIF__data__cnf__dt& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__rts__req_sapi_encoder(const PCUIF__Sapi& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__rts__req_sapi_decoder(OCTETSTRING& input_stream, PCUIF__Sapi& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__rts__req_spare_encoder(const OCTETSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__rts__req_spare_decoder(OCTETSTRING& input_stream, OCTETSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__rts__req_fn_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__rts__req_fn_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__rts__req_arfcn_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__rts__req_arfcn_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__rts__req_trx__nr_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__rts__req_trx__nr_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__rts__req_ts__nr_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__rts__req_ts__nr_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__rts__req_block__nr_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__rts__req_block__nr_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__rts__req_encoder(const PCUIF__rts__req& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__rts__req_decoder(OCTETSTRING& input_stream, PCUIF__rts__req& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__rach__ind_sapi_encoder(const PCUIF__Sapi& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__rach__ind_sapi_decoder(OCTETSTRING& input_stream, PCUIF__Sapi& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__rach__ind_ra_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__rach__ind_ra_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__rach__ind_qta_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__rach__ind_qta_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__rach__ind_fn_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__rach__ind_fn_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__rach__ind_arfcn_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__rach__ind_arfcn_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__rach__ind_is__11bit_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__rach__ind_is__11bit_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__rach__ind_burst__type_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__rach__ind_burst__type_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__rach__ind_encoder(const PCUIF__rach__ind& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__rach__ind_decoder(OCTETSTRING& input_stream, PCUIF__rach__ind& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__InfoTrx_arfcn_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__InfoTrx_arfcn_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__InfoTrx_pdch__mask_encoder(const BITSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__InfoTrx_pdch__mask_decoder(OCTETSTRING& input_stream, BITSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__InfoTrx_spare_encoder(const OCTETSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__InfoTrx_spare_decoder(OCTETSTRING& input_stream, OCTETSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__InfoTrx_tsc_encoder(const OCTETSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__InfoTrx_tsc_decoder(OCTETSTRING& input_stream, OCTETSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__InfoTrx_hLayer1_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__InfoTrx_hLayer1_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__InfoTrx_encoder(const PCUIF__InfoTrx& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__InfoTrx_decoder(OCTETSTRING& input_stream, PCUIF__InfoTrx& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_version_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_version_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_flags_encoder(const PCUIF__Flags& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_flags_decoder(OCTETSTRING& input_stream, PCUIF__Flags& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern boolean operator==(null_type null_value, const PCUIF__info__ind_trx& other_value);
inline boolean operator!=(null_type null_value, const PCUIF__info__ind_trx& other_value) { return !(null_value == other_value); }
extern void PCUIF__info__ind_trx_0_encoder(const PCUIF__InfoTrx& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_trx_0_decoder(OCTETSTRING& input_stream, PCUIF__InfoTrx& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_trx_encoder(const PCUIF__info__ind_trx& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_trx_decoder(OCTETSTRING& input_stream, PCUIF__info__ind_trx& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_bsic_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_bsic_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_mcc_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_mcc_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_mnc_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_mnc_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_mnc__3__digits_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_mnc__3__digits_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_lac_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_lac_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_rac_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_rac_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_nsei_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_nsei_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_nse__timer_0_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_nse__timer_0_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_nse__timer_encoder(const PCUIF__info__ind_nse__timer& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_nse__timer_decoder(OCTETSTRING& input_stream, PCUIF__info__ind_nse__timer& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_cell__timer_0_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_cell__timer_0_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_cell__timer_encoder(const PCUIF__info__ind_cell__timer& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_cell__timer_decoder(OCTETSTRING& input_stream, PCUIF__info__ind_cell__timer& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_cell__id_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_cell__id_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_repeat__time_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_repeat__time_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_repeat__count_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_repeat__count_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_bvci_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_bvci_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_t3142_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_t3142_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_t3169_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_t3169_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_t3191_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_t3191_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_t3193__10ms_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_t3193__10ms_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_t3195_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_t3195_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_t3101_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_t3101_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_t3103_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_t3103_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_t3105_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_t3105_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_cv__countdown_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_cv__countdown_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_dl__tbf__ext_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_dl__tbf__ext_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_ul__tbf__ext_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_ul__tbf__ext_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_initial__cs_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_initial__cs_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_initial__mcs_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_initial__mcs_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_nsvci_0_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_nsvci_0_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_nsvci_encoder(const PCUIF__info__ind_nsvci& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_nsvci_decoder(OCTETSTRING& input_stream, PCUIF__info__ind_nsvci& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_local__pprt_0_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_local__pprt_0_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_local__pprt_encoder(const PCUIF__info__ind_local__pprt& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_local__pprt_decoder(OCTETSTRING& input_stream, PCUIF__info__ind_local__pprt& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_remote__port_0_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_remote__port_0_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_remote__port_encoder(const PCUIF__info__ind_remote__port& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_remote__port_decoder(OCTETSTRING& input_stream, PCUIF__info__ind_remote__port& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_remote__ip_0_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_remote__ip_0_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_remote__ip_encoder(const PCUIF__info__ind_remote__ip& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_remote__ip_decoder(OCTETSTRING& input_stream, PCUIF__info__ind_remote__ip& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__info__ind_encoder(const PCUIF__info__ind& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__info__ind_decoder(OCTETSTRING& input_stream, PCUIF__info__ind& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__act__req_is__activate_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__act__req_is__activate_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__act__req_trx__nr_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__act__req_trx__nr_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__act__req_ts__nr_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__act__req_ts__nr_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__act__req_spare_encoder(const OCTETSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__act__req_spare_decoder(OCTETSTRING& input_stream, OCTETSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__act__req_encoder(const PCUIF__act__req& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__act__req_decoder(OCTETSTRING& input_stream, PCUIF__act__req& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__time__ind_fn_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__time__ind_fn_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__time__ind_encoder(const PCUIF__time__ind& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__time__ind_decoder(OCTETSTRING& input_stream, PCUIF__time__ind& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__pag__req_sapi_encoder(const PCUIF__Sapi& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__pag__req_sapi_decoder(OCTETSTRING& input_stream, PCUIF__Sapi& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__pag__req_chan__needed_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__pag__req_chan__needed_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__pag__req_identity__lv_encoder(const OCTETSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__pag__req_identity__lv_decoder(OCTETSTRING& input_stream, OCTETSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__pag__req_encoder(const PCUIF__pag__req& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__pag__req_decoder(OCTETSTRING& input_stream, PCUIF__pag__req& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__susp__req_tlli_encoder(const OCTETSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__susp__req_tlli_decoder(OCTETSTRING& input_stream, OCTETSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__susp__req_ra__id_encoder(const OCTETSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__susp__req_ra__id_decoder(OCTETSTRING& input_stream, OCTETSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__susp__req_cause_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__susp__req_cause_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__susp__req_encoder(const PCUIF__susp__req& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__susp__req_decoder(OCTETSTRING& input_stream, PCUIF__susp__req& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__MsgUnion_data__req_encoder(const PCUIF__data& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__MsgUnion_data__req_decoder(OCTETSTRING& input_stream, PCUIF__data& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__MsgUnion_data__cnf_encoder(const PCUIF__data& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__MsgUnion_data__cnf_decoder(OCTETSTRING& input_stream, PCUIF__data& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__MsgUnion_data__cnf__dt_encoder(const PCUIF__data__cnf__dt& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__MsgUnion_data__cnf__dt_decoder(OCTETSTRING& input_stream, PCUIF__data__cnf__dt& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__MsgUnion_data__ind_encoder(const PCUIF__data& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__MsgUnion_data__ind_decoder(OCTETSTRING& input_stream, PCUIF__data& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__MsgUnion_susp__req_encoder(const PCUIF__susp__req& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__MsgUnion_susp__req_decoder(OCTETSTRING& input_stream, PCUIF__susp__req& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__MsgUnion_rts__req_encoder(const PCUIF__rts__req& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__MsgUnion_rts__req_decoder(OCTETSTRING& input_stream, PCUIF__rts__req& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__MsgUnion_rach__ind_encoder(const PCUIF__rach__ind& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__MsgUnion_rach__ind_decoder(OCTETSTRING& input_stream, PCUIF__rach__ind& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__MsgUnion_txt__ind_encoder(const PCUIF__txt__ind& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__MsgUnion_txt__ind_decoder(OCTETSTRING& input_stream, PCUIF__txt__ind& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__MsgUnion_info__ind_encoder(const PCUIF__info__ind& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__MsgUnion_info__ind_decoder(OCTETSTRING& input_stream, PCUIF__info__ind& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__MsgUnion_act__req_encoder(const PCUIF__act__req& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__MsgUnion_act__req_decoder(OCTETSTRING& input_stream, PCUIF__act__req& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__MsgUnion_time__ind_encoder(const PCUIF__time__ind& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__MsgUnion_time__ind_decoder(OCTETSTRING& input_stream, PCUIF__time__ind& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__MsgUnion_pag__req_encoder(const PCUIF__pag__req& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__MsgUnion_pag__req_decoder(OCTETSTRING& input_stream, PCUIF__pag__req& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__MsgUnion_encoder(const PCUIF__MsgUnion& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__MsgUnion_decoder(OCTETSTRING& input_stream, PCUIF__MsgUnion& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Message_msg__type_encoder(const PCUIF__MsgType& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Message_msg__type_decoder(OCTETSTRING& input_stream, PCUIF__MsgType& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Message_bts__nr_encoder(const INTEGER& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Message_bts__nr_decoder(OCTETSTRING& input_stream, INTEGER& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Message_spare_encoder(const OCTETSTRING& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Message_spare_decoder(OCTETSTRING& input_stream, OCTETSTRING& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Message_u_encoder(const PCUIF__MsgUnion& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Message_u_decoder(OCTETSTRING& input_stream, PCUIF__MsgUnion& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern void PCUIF__Message_encoder(const PCUIF__Message& input_value, OCTETSTRING& output_stream, const UNIVERSAL_CHARSTRING& coding_name);
extern INTEGER PCUIF__Message_decoder(OCTETSTRING& input_stream, PCUIF__Message& output_value, const UNIVERSAL_CHARSTRING& coding_name);
extern OCTETSTRING enc__PCUIF__Message(const PCUIF__Message& pdu);
extern PCUIF__Message dec__PCUIF__Message(const OCTETSTRING& stream);
extern PCUIF__Message_template tr__PCUIF__RTS__REQ(const INTEGER_template& bts__nr, const INTEGER_template& trx__nr, const INTEGER_template& ts__nr, const PCUIF__Sapi_template& sapi, const INTEGER_template& fn, const INTEGER_template& block__nr);
extern PCUIF__Message_template ts__PCUIF__TXT__IND(const INTEGER& bts__nr, const PCUIF__TextType& tt, const CHARSTRING& text);
extern PCUIF__Message_template ts__PCUIF__ACT__REQ(const INTEGER& bts__nr, const INTEGER& trx__nr, const INTEGER& ts__nr);
extern PCUIF__Message_template ts__PCUIF__DEACT__REQ(const INTEGER& bts__nr, const INTEGER& trx__nr, const INTEGER& ts__nr);
extern PCUIF__Message_template tr__PCUIF__DATA__IND(const INTEGER_template& bts__nr, const INTEGER_template& trx__nr, const INTEGER_template& ts__nr, const INTEGER_template& block__nr, const PCUIF__Sapi_template& sapi, const OCTETSTRING_template& data);
extern PCUIF__Message_template ts__PCUIF__DATA__REQ(const INTEGER& bts__nr, const INTEGER& trx__nr, const INTEGER& ts__nr, const INTEGER& block__nr, const INTEGER& fn, const PCUIF__Sapi& sapi, const OCTETSTRING& data);
extern PCUIF__Message_template tr__PCUIF__DATA__CNF(const INTEGER_template& bts__nr, const INTEGER_template& trx__nr, const INTEGER_template& ts__nr, const PCUIF__Sapi_template& sapi, const OCTETSTRING_template& data);
extern PCUIF__Message_template tr__PCUIF__RACH__IND(const INTEGER_template& bts__nr, const INTEGER_template& ra, const INTEGER_template& is__11bit, const INTEGER_template& burst__type, const INTEGER_template& fn);
extern PCUIF__Message_template tr__PCUIF__PAG__REQ(const INTEGER_template& bts__nr, const OCTETSTRING_template& id__lv, const INTEGER_template& chan__needed, const PCUIF__Sapi_template& );
extern PCUIF__Message_template tr__PCUIF__INFO__IND(const INTEGER_template& bts__nr, const PCUIF__Flags_template& flags, const INTEGER_template& version);

/* Global variable declarations */

extern const CHARSTRING& PCU__SOCK__DEFAULT;
extern const INTEGER& PCU__IF__VERSION;
extern const TTCN_RAWdescriptor_t PCUIF__MsgType_raw_;
extern const TTCN_Typedescriptor_t PCUIF__MsgType_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__MsgType_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Sapi_raw_;
extern const TTCN_Typedescriptor_t PCUIF__Sapi_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Sapi_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Flags_bts__active_raw_;
extern const XERdescriptor_t PCUIF__Flags_bts__active_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Flags_bts__active_json_;
extern const TTCN_OERdescriptor_t PCUIF__Flags_bts__active_oer_;
extern const TTCN_Typedescriptor_t PCUIF__Flags_bts__active_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Flags_bts__active_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Flags_sysmo__direct__dsp_raw_;
extern const XERdescriptor_t PCUIF__Flags_sysmo__direct__dsp_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Flags_sysmo__direct__dsp_json_;
extern const TTCN_OERdescriptor_t PCUIF__Flags_sysmo__direct__dsp_oer_;
extern const TTCN_Typedescriptor_t PCUIF__Flags_sysmo__direct__dsp_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Flags_sysmo__direct__dsp_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Flags_spare_raw_;
extern const XERdescriptor_t PCUIF__Flags_spare_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Flags_spare_json_;
extern const TTCN_OERdescriptor_t PCUIF__Flags_spare_oer_;
extern const TTCN_Typedescriptor_t PCUIF__Flags_spare_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Flags_spare_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Flags_cs1_raw_;
extern const XERdescriptor_t PCUIF__Flags_cs1_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Flags_cs1_json_;
extern const TTCN_OERdescriptor_t PCUIF__Flags_cs1_oer_;
extern const TTCN_Typedescriptor_t PCUIF__Flags_cs1_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Flags_cs1_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Flags_cs2_raw_;
extern const XERdescriptor_t PCUIF__Flags_cs2_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Flags_cs2_json_;
extern const TTCN_OERdescriptor_t PCUIF__Flags_cs2_oer_;
extern const TTCN_Typedescriptor_t PCUIF__Flags_cs2_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Flags_cs2_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Flags_cs3_raw_;
extern const XERdescriptor_t PCUIF__Flags_cs3_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Flags_cs3_json_;
extern const TTCN_OERdescriptor_t PCUIF__Flags_cs3_oer_;
extern const TTCN_Typedescriptor_t PCUIF__Flags_cs3_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Flags_cs3_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Flags_cs4_raw_;
extern const XERdescriptor_t PCUIF__Flags_cs4_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Flags_cs4_json_;
extern const TTCN_OERdescriptor_t PCUIF__Flags_cs4_oer_;
extern const TTCN_Typedescriptor_t PCUIF__Flags_cs4_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Flags_cs4_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Flags_mcs1_raw_;
extern const XERdescriptor_t PCUIF__Flags_mcs1_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Flags_mcs1_json_;
extern const TTCN_OERdescriptor_t PCUIF__Flags_mcs1_oer_;
extern const TTCN_Typedescriptor_t PCUIF__Flags_mcs1_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Flags_mcs1_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Flags_mcs2_raw_;
extern const XERdescriptor_t PCUIF__Flags_mcs2_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Flags_mcs2_json_;
extern const TTCN_OERdescriptor_t PCUIF__Flags_mcs2_oer_;
extern const TTCN_Typedescriptor_t PCUIF__Flags_mcs2_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Flags_mcs2_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Flags_mcs3_raw_;
extern const XERdescriptor_t PCUIF__Flags_mcs3_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Flags_mcs3_json_;
extern const TTCN_OERdescriptor_t PCUIF__Flags_mcs3_oer_;
extern const TTCN_Typedescriptor_t PCUIF__Flags_mcs3_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Flags_mcs3_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Flags_mcs4_raw_;
extern const XERdescriptor_t PCUIF__Flags_mcs4_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Flags_mcs4_json_;
extern const TTCN_OERdescriptor_t PCUIF__Flags_mcs4_oer_;
extern const TTCN_Typedescriptor_t PCUIF__Flags_mcs4_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Flags_mcs4_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Flags_mcs5_raw_;
extern const XERdescriptor_t PCUIF__Flags_mcs5_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Flags_mcs5_json_;
extern const TTCN_OERdescriptor_t PCUIF__Flags_mcs5_oer_;
extern const TTCN_Typedescriptor_t PCUIF__Flags_mcs5_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Flags_mcs5_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Flags_mcs6_raw_;
extern const XERdescriptor_t PCUIF__Flags_mcs6_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Flags_mcs6_json_;
extern const TTCN_OERdescriptor_t PCUIF__Flags_mcs6_oer_;
extern const TTCN_Typedescriptor_t PCUIF__Flags_mcs6_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Flags_mcs6_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Flags_mcs7_raw_;
extern const XERdescriptor_t PCUIF__Flags_mcs7_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Flags_mcs7_json_;
extern const TTCN_OERdescriptor_t PCUIF__Flags_mcs7_oer_;
extern const TTCN_Typedescriptor_t PCUIF__Flags_mcs7_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Flags_mcs7_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Flags_mcs8_raw_;
extern const XERdescriptor_t PCUIF__Flags_mcs8_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Flags_mcs8_json_;
extern const TTCN_OERdescriptor_t PCUIF__Flags_mcs8_oer_;
extern const TTCN_Typedescriptor_t PCUIF__Flags_mcs8_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Flags_mcs8_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Flags_mcs9_raw_;
extern const XERdescriptor_t PCUIF__Flags_mcs9_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Flags_mcs9_json_;
extern const TTCN_OERdescriptor_t PCUIF__Flags_mcs9_oer_;
extern const TTCN_Typedescriptor_t PCUIF__Flags_mcs9_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Flags_mcs9_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Flags_spare2_raw_;
extern const XERdescriptor_t PCUIF__Flags_spare2_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Flags_spare2_json_;
extern const TTCN_OERdescriptor_t PCUIF__Flags_spare2_oer_;
extern const TTCN_Typedescriptor_t PCUIF__Flags_spare2_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Flags_spare2_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Flags_raw_;
extern const TTCN_Typedescriptor_t PCUIF__Flags_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Flags_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__TextType_raw_;
extern const TTCN_Typedescriptor_t PCUIF__TextType_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__TextType_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Text_raw_;
extern const XERdescriptor_t PCUIF__Text_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Text_json_;
extern const TTCN_Typedescriptor_t PCUIF__Text_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Text_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__txt__ind_txt__type_raw_;
extern const TTCN_Typedescriptor_t PCUIF__txt__ind_txt__type_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__txt__ind_txt__type_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__txt__ind_text_raw_;
extern const XERdescriptor_t PCUIF__txt__ind_text_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__txt__ind_text_json_;
extern const TTCN_Typedescriptor_t PCUIF__txt__ind_text_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__txt__ind_text_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__txt__ind_raw_;
extern const TTCN_Typedescriptor_t PCUIF__txt__ind_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__txt__ind_default_coding;
extern const TTCN_RAWdescriptor_t OCT162_raw_;
extern const XERdescriptor_t OCT162_xer_;
extern const TTCN_JSONdescriptor_t OCT162_json_;
extern const TTCN_OERdescriptor_t OCT162_oer_;
extern const TTCN_Typedescriptor_t OCT162_descr_;
extern UNIVERSAL_CHARSTRING OCT162_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data_sapi_raw_;
extern const TTCN_Typedescriptor_t PCUIF__data_sapi_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data_sapi_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data_len_raw_;
extern const XERdescriptor_t PCUIF__data_len_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data_len_json_;
extern const TTCN_OERdescriptor_t PCUIF__data_len_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data_len_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data_len_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data_data_raw_;
extern const XERdescriptor_t PCUIF__data_data_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data_data_json_;
extern const TTCN_OERdescriptor_t PCUIF__data_data_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data_data_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data_data_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data_fn_raw_;
extern const XERdescriptor_t PCUIF__data_fn_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data_fn_json_;
extern const TTCN_OERdescriptor_t PCUIF__data_fn_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data_fn_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data_fn_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data_arfcn_raw_;
extern const XERdescriptor_t PCUIF__data_arfcn_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data_arfcn_json_;
extern const TTCN_OERdescriptor_t PCUIF__data_arfcn_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data_arfcn_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data_arfcn_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data_trx__nr_raw_;
extern const XERdescriptor_t PCUIF__data_trx__nr_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data_trx__nr_json_;
extern const TTCN_OERdescriptor_t PCUIF__data_trx__nr_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data_trx__nr_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data_trx__nr_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data_ts__nr_raw_;
extern const XERdescriptor_t PCUIF__data_ts__nr_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data_ts__nr_json_;
extern const TTCN_OERdescriptor_t PCUIF__data_ts__nr_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data_ts__nr_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data_ts__nr_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data_block__nr_raw_;
extern const XERdescriptor_t PCUIF__data_block__nr_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data_block__nr_json_;
extern const TTCN_OERdescriptor_t PCUIF__data_block__nr_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data_block__nr_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data_block__nr_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data_rssi_raw_;
extern const XERdescriptor_t PCUIF__data_rssi_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data_rssi_json_;
extern const TTCN_OERdescriptor_t PCUIF__data_rssi_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data_rssi_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data_rssi_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data_ber10k_raw_;
extern const XERdescriptor_t PCUIF__data_ber10k_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data_ber10k_json_;
extern const TTCN_OERdescriptor_t PCUIF__data_ber10k_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data_ber10k_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data_ber10k_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data_ta__offs__qbits_raw_;
extern const XERdescriptor_t PCUIF__data_ta__offs__qbits_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data_ta__offs__qbits_json_;
extern const TTCN_OERdescriptor_t PCUIF__data_ta__offs__qbits_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data_ta__offs__qbits_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data_ta__offs__qbits_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data_lqual__cb_raw_;
extern const XERdescriptor_t PCUIF__data_lqual__cb_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data_lqual__cb_json_;
extern const TTCN_OERdescriptor_t PCUIF__data_lqual__cb_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data_lqual__cb_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data_lqual__cb_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data_raw_;
extern const TTCN_Typedescriptor_t PCUIF__data_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data__cnf__dt_sapi_raw_;
extern const TTCN_Typedescriptor_t PCUIF__data__cnf__dt_sapi_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data__cnf__dt_sapi_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data__cnf__dt_tlli_raw_;
extern const XERdescriptor_t PCUIF__data__cnf__dt_tlli_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data__cnf__dt_tlli_json_;
extern const TTCN_OERdescriptor_t PCUIF__data__cnf__dt_tlli_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data__cnf__dt_tlli_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data__cnf__dt_tlli_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data__cnf__dt_fn_raw_;
extern const XERdescriptor_t PCUIF__data__cnf__dt_fn_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data__cnf__dt_fn_json_;
extern const TTCN_OERdescriptor_t PCUIF__data__cnf__dt_fn_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data__cnf__dt_fn_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data__cnf__dt_fn_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data__cnf__dt_arfcn_raw_;
extern const XERdescriptor_t PCUIF__data__cnf__dt_arfcn_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data__cnf__dt_arfcn_json_;
extern const TTCN_OERdescriptor_t PCUIF__data__cnf__dt_arfcn_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data__cnf__dt_arfcn_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data__cnf__dt_arfcn_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data__cnf__dt_trx__nr_raw_;
extern const XERdescriptor_t PCUIF__data__cnf__dt_trx__nr_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data__cnf__dt_trx__nr_json_;
extern const TTCN_OERdescriptor_t PCUIF__data__cnf__dt_trx__nr_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data__cnf__dt_trx__nr_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data__cnf__dt_trx__nr_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data__cnf__dt_ts__nr_raw_;
extern const XERdescriptor_t PCUIF__data__cnf__dt_ts__nr_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data__cnf__dt_ts__nr_json_;
extern const TTCN_OERdescriptor_t PCUIF__data__cnf__dt_ts__nr_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data__cnf__dt_ts__nr_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data__cnf__dt_ts__nr_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data__cnf__dt_block__nr_raw_;
extern const XERdescriptor_t PCUIF__data__cnf__dt_block__nr_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data__cnf__dt_block__nr_json_;
extern const TTCN_OERdescriptor_t PCUIF__data__cnf__dt_block__nr_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data__cnf__dt_block__nr_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data__cnf__dt_block__nr_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data__cnf__dt_rssi_raw_;
extern const XERdescriptor_t PCUIF__data__cnf__dt_rssi_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data__cnf__dt_rssi_json_;
extern const TTCN_OERdescriptor_t PCUIF__data__cnf__dt_rssi_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data__cnf__dt_rssi_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data__cnf__dt_rssi_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data__cnf__dt_ber10k_raw_;
extern const XERdescriptor_t PCUIF__data__cnf__dt_ber10k_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data__cnf__dt_ber10k_json_;
extern const TTCN_OERdescriptor_t PCUIF__data__cnf__dt_ber10k_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data__cnf__dt_ber10k_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data__cnf__dt_ber10k_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data__cnf__dt_ta__offs__qbits_raw_;
extern const XERdescriptor_t PCUIF__data__cnf__dt_ta__offs__qbits_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data__cnf__dt_ta__offs__qbits_json_;
extern const TTCN_OERdescriptor_t PCUIF__data__cnf__dt_ta__offs__qbits_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data__cnf__dt_ta__offs__qbits_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data__cnf__dt_ta__offs__qbits_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data__cnf__dt_lqual__cb_raw_;
extern const XERdescriptor_t PCUIF__data__cnf__dt_lqual__cb_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__data__cnf__dt_lqual__cb_json_;
extern const TTCN_OERdescriptor_t PCUIF__data__cnf__dt_lqual__cb_oer_;
extern const TTCN_Typedescriptor_t PCUIF__data__cnf__dt_lqual__cb_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data__cnf__dt_lqual__cb_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__data__cnf__dt_raw_;
extern const TTCN_Typedescriptor_t PCUIF__data__cnf__dt_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__data__cnf__dt_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__rts__req_sapi_raw_;
extern const TTCN_Typedescriptor_t PCUIF__rts__req_sapi_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__rts__req_sapi_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__rts__req_spare_raw_;
extern const XERdescriptor_t PCUIF__rts__req_spare_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__rts__req_spare_json_;
extern const TTCN_OERdescriptor_t PCUIF__rts__req_spare_oer_;
extern const TTCN_Typedescriptor_t PCUIF__rts__req_spare_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__rts__req_spare_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__rts__req_fn_raw_;
extern const XERdescriptor_t PCUIF__rts__req_fn_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__rts__req_fn_json_;
extern const TTCN_OERdescriptor_t PCUIF__rts__req_fn_oer_;
extern const TTCN_Typedescriptor_t PCUIF__rts__req_fn_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__rts__req_fn_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__rts__req_arfcn_raw_;
extern const XERdescriptor_t PCUIF__rts__req_arfcn_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__rts__req_arfcn_json_;
extern const TTCN_OERdescriptor_t PCUIF__rts__req_arfcn_oer_;
extern const TTCN_Typedescriptor_t PCUIF__rts__req_arfcn_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__rts__req_arfcn_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__rts__req_trx__nr_raw_;
extern const XERdescriptor_t PCUIF__rts__req_trx__nr_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__rts__req_trx__nr_json_;
extern const TTCN_OERdescriptor_t PCUIF__rts__req_trx__nr_oer_;
extern const TTCN_Typedescriptor_t PCUIF__rts__req_trx__nr_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__rts__req_trx__nr_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__rts__req_ts__nr_raw_;
extern const XERdescriptor_t PCUIF__rts__req_ts__nr_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__rts__req_ts__nr_json_;
extern const TTCN_OERdescriptor_t PCUIF__rts__req_ts__nr_oer_;
extern const TTCN_Typedescriptor_t PCUIF__rts__req_ts__nr_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__rts__req_ts__nr_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__rts__req_block__nr_raw_;
extern const XERdescriptor_t PCUIF__rts__req_block__nr_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__rts__req_block__nr_json_;
extern const TTCN_OERdescriptor_t PCUIF__rts__req_block__nr_oer_;
extern const TTCN_Typedescriptor_t PCUIF__rts__req_block__nr_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__rts__req_block__nr_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__rts__req_raw_;
extern const TTCN_Typedescriptor_t PCUIF__rts__req_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__rts__req_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__rach__ind_sapi_raw_;
extern const TTCN_Typedescriptor_t PCUIF__rach__ind_sapi_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__rach__ind_sapi_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__rach__ind_ra_raw_;
extern const XERdescriptor_t PCUIF__rach__ind_ra_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__rach__ind_ra_json_;
extern const TTCN_OERdescriptor_t PCUIF__rach__ind_ra_oer_;
extern const TTCN_Typedescriptor_t PCUIF__rach__ind_ra_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__rach__ind_ra_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__rach__ind_qta_raw_;
extern const XERdescriptor_t PCUIF__rach__ind_qta_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__rach__ind_qta_json_;
extern const TTCN_OERdescriptor_t PCUIF__rach__ind_qta_oer_;
extern const TTCN_Typedescriptor_t PCUIF__rach__ind_qta_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__rach__ind_qta_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__rach__ind_fn_raw_;
extern const XERdescriptor_t PCUIF__rach__ind_fn_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__rach__ind_fn_json_;
extern const TTCN_OERdescriptor_t PCUIF__rach__ind_fn_oer_;
extern const TTCN_Typedescriptor_t PCUIF__rach__ind_fn_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__rach__ind_fn_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__rach__ind_arfcn_raw_;
extern const XERdescriptor_t PCUIF__rach__ind_arfcn_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__rach__ind_arfcn_json_;
extern const TTCN_OERdescriptor_t PCUIF__rach__ind_arfcn_oer_;
extern const TTCN_Typedescriptor_t PCUIF__rach__ind_arfcn_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__rach__ind_arfcn_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__rach__ind_is__11bit_raw_;
extern const XERdescriptor_t PCUIF__rach__ind_is__11bit_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__rach__ind_is__11bit_json_;
extern const TTCN_OERdescriptor_t PCUIF__rach__ind_is__11bit_oer_;
extern const TTCN_Typedescriptor_t PCUIF__rach__ind_is__11bit_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__rach__ind_is__11bit_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__rach__ind_burst__type_raw_;
extern const XERdescriptor_t PCUIF__rach__ind_burst__type_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__rach__ind_burst__type_json_;
extern const TTCN_OERdescriptor_t PCUIF__rach__ind_burst__type_oer_;
extern const TTCN_Typedescriptor_t PCUIF__rach__ind_burst__type_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__rach__ind_burst__type_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__rach__ind_raw_;
extern const TTCN_Typedescriptor_t PCUIF__rach__ind_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__rach__ind_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__InfoTrx_arfcn_raw_;
extern const XERdescriptor_t PCUIF__InfoTrx_arfcn_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__InfoTrx_arfcn_json_;
extern const TTCN_OERdescriptor_t PCUIF__InfoTrx_arfcn_oer_;
extern const TTCN_Typedescriptor_t PCUIF__InfoTrx_arfcn_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__InfoTrx_arfcn_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__InfoTrx_pdch__mask_raw_;
extern const XERdescriptor_t PCUIF__InfoTrx_pdch__mask_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__InfoTrx_pdch__mask_json_;
extern const TTCN_OERdescriptor_t PCUIF__InfoTrx_pdch__mask_oer_;
extern const TTCN_Typedescriptor_t PCUIF__InfoTrx_pdch__mask_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__InfoTrx_pdch__mask_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__InfoTrx_spare_raw_;
extern const XERdescriptor_t PCUIF__InfoTrx_spare_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__InfoTrx_spare_json_;
extern const TTCN_OERdescriptor_t PCUIF__InfoTrx_spare_oer_;
extern const TTCN_Typedescriptor_t PCUIF__InfoTrx_spare_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__InfoTrx_spare_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__InfoTrx_tsc_raw_;
extern const XERdescriptor_t PCUIF__InfoTrx_tsc_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__InfoTrx_tsc_json_;
extern const TTCN_OERdescriptor_t PCUIF__InfoTrx_tsc_oer_;
extern const TTCN_Typedescriptor_t PCUIF__InfoTrx_tsc_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__InfoTrx_tsc_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__InfoTrx_hLayer1_raw_;
extern const XERdescriptor_t PCUIF__InfoTrx_hLayer1_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__InfoTrx_hLayer1_json_;
extern const TTCN_OERdescriptor_t PCUIF__InfoTrx_hLayer1_oer_;
extern const TTCN_Typedescriptor_t PCUIF__InfoTrx_hLayer1_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__InfoTrx_hLayer1_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__InfoTrx_raw_;
extern const TTCN_Typedescriptor_t PCUIF__InfoTrx_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__InfoTrx_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_version_raw_;
extern const XERdescriptor_t PCUIF__info__ind_version_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_version_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_version_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_version_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_version_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_flags_raw_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_flags_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_flags_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_trx_raw_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_trx_descr_;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_trx_0_raw_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_trx_0_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_trx_0_default_coding;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_trx_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_bsic_raw_;
extern const XERdescriptor_t PCUIF__info__ind_bsic_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_bsic_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_bsic_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_bsic_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_bsic_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_mcc_raw_;
extern const XERdescriptor_t PCUIF__info__ind_mcc_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_mcc_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_mcc_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_mcc_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_mcc_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_mnc_raw_;
extern const XERdescriptor_t PCUIF__info__ind_mnc_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_mnc_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_mnc_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_mnc_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_mnc_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_mnc__3__digits_raw_;
extern const XERdescriptor_t PCUIF__info__ind_mnc__3__digits_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_mnc__3__digits_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_mnc__3__digits_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_mnc__3__digits_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_mnc__3__digits_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_lac_raw_;
extern const XERdescriptor_t PCUIF__info__ind_lac_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_lac_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_lac_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_lac_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_lac_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_rac_raw_;
extern const XERdescriptor_t PCUIF__info__ind_rac_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_rac_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_rac_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_rac_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_rac_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_nsei_raw_;
extern const XERdescriptor_t PCUIF__info__ind_nsei_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_nsei_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_nsei_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_nsei_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_nsei_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_nse__timer_raw_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_nse__timer_descr_;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_nse__timer_0_raw_;
extern const XERdescriptor_t PCUIF__info__ind_nse__timer_0_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_nse__timer_0_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_nse__timer_0_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_nse__timer_0_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_nse__timer_0_default_coding;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_nse__timer_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_cell__timer_raw_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_cell__timer_descr_;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_cell__timer_0_raw_;
extern const XERdescriptor_t PCUIF__info__ind_cell__timer_0_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_cell__timer_0_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_cell__timer_0_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_cell__timer_0_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_cell__timer_0_default_coding;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_cell__timer_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_cell__id_raw_;
extern const XERdescriptor_t PCUIF__info__ind_cell__id_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_cell__id_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_cell__id_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_cell__id_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_cell__id_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_repeat__time_raw_;
extern const XERdescriptor_t PCUIF__info__ind_repeat__time_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_repeat__time_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_repeat__time_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_repeat__time_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_repeat__time_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_repeat__count_raw_;
extern const XERdescriptor_t PCUIF__info__ind_repeat__count_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_repeat__count_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_repeat__count_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_repeat__count_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_repeat__count_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_bvci_raw_;
extern const XERdescriptor_t PCUIF__info__ind_bvci_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_bvci_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_bvci_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_bvci_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_bvci_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_t3142_raw_;
extern const XERdescriptor_t PCUIF__info__ind_t3142_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_t3142_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_t3142_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_t3142_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_t3142_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_t3169_raw_;
extern const XERdescriptor_t PCUIF__info__ind_t3169_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_t3169_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_t3169_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_t3169_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_t3169_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_t3191_raw_;
extern const XERdescriptor_t PCUIF__info__ind_t3191_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_t3191_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_t3191_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_t3191_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_t3191_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_t3193__10ms_raw_;
extern const XERdescriptor_t PCUIF__info__ind_t3193__10ms_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_t3193__10ms_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_t3193__10ms_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_t3193__10ms_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_t3193__10ms_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_t3195_raw_;
extern const XERdescriptor_t PCUIF__info__ind_t3195_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_t3195_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_t3195_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_t3195_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_t3195_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_t3101_raw_;
extern const XERdescriptor_t PCUIF__info__ind_t3101_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_t3101_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_t3101_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_t3101_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_t3101_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_t3103_raw_;
extern const XERdescriptor_t PCUIF__info__ind_t3103_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_t3103_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_t3103_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_t3103_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_t3103_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_t3105_raw_;
extern const XERdescriptor_t PCUIF__info__ind_t3105_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_t3105_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_t3105_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_t3105_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_t3105_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_cv__countdown_raw_;
extern const XERdescriptor_t PCUIF__info__ind_cv__countdown_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_cv__countdown_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_cv__countdown_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_cv__countdown_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_cv__countdown_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_dl__tbf__ext_raw_;
extern const XERdescriptor_t PCUIF__info__ind_dl__tbf__ext_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_dl__tbf__ext_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_dl__tbf__ext_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_dl__tbf__ext_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_dl__tbf__ext_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_ul__tbf__ext_raw_;
extern const XERdescriptor_t PCUIF__info__ind_ul__tbf__ext_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_ul__tbf__ext_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_ul__tbf__ext_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_ul__tbf__ext_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_ul__tbf__ext_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_initial__cs_raw_;
extern const XERdescriptor_t PCUIF__info__ind_initial__cs_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_initial__cs_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_initial__cs_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_initial__cs_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_initial__cs_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_initial__mcs_raw_;
extern const XERdescriptor_t PCUIF__info__ind_initial__mcs_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_initial__mcs_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_initial__mcs_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_initial__mcs_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_initial__mcs_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_nsvci_raw_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_nsvci_descr_;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_nsvci_0_raw_;
extern const XERdescriptor_t PCUIF__info__ind_nsvci_0_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_nsvci_0_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_nsvci_0_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_nsvci_0_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_nsvci_0_default_coding;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_nsvci_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_local__pprt_raw_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_local__pprt_descr_;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_local__pprt_0_raw_;
extern const XERdescriptor_t PCUIF__info__ind_local__pprt_0_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_local__pprt_0_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_local__pprt_0_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_local__pprt_0_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_local__pprt_0_default_coding;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_local__pprt_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_remote__port_raw_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_remote__port_descr_;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_remote__port_0_raw_;
extern const XERdescriptor_t PCUIF__info__ind_remote__port_0_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_remote__port_0_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_remote__port_0_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_remote__port_0_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_remote__port_0_default_coding;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_remote__port_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_remote__ip_raw_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_remote__ip_descr_;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_remote__ip_0_raw_;
extern const XERdescriptor_t PCUIF__info__ind_remote__ip_0_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__info__ind_remote__ip_0_json_;
extern const TTCN_OERdescriptor_t PCUIF__info__ind_remote__ip_0_oer_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_remote__ip_0_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_remote__ip_0_default_coding;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_remote__ip_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__info__ind_raw_;
extern const TTCN_Typedescriptor_t PCUIF__info__ind_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__info__ind_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__act__req_is__activate_raw_;
extern const XERdescriptor_t PCUIF__act__req_is__activate_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__act__req_is__activate_json_;
extern const TTCN_OERdescriptor_t PCUIF__act__req_is__activate_oer_;
extern const TTCN_Typedescriptor_t PCUIF__act__req_is__activate_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__act__req_is__activate_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__act__req_trx__nr_raw_;
extern const XERdescriptor_t PCUIF__act__req_trx__nr_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__act__req_trx__nr_json_;
extern const TTCN_OERdescriptor_t PCUIF__act__req_trx__nr_oer_;
extern const TTCN_Typedescriptor_t PCUIF__act__req_trx__nr_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__act__req_trx__nr_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__act__req_ts__nr_raw_;
extern const XERdescriptor_t PCUIF__act__req_ts__nr_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__act__req_ts__nr_json_;
extern const TTCN_OERdescriptor_t PCUIF__act__req_ts__nr_oer_;
extern const TTCN_Typedescriptor_t PCUIF__act__req_ts__nr_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__act__req_ts__nr_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__act__req_spare_raw_;
extern const XERdescriptor_t PCUIF__act__req_spare_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__act__req_spare_json_;
extern const TTCN_OERdescriptor_t PCUIF__act__req_spare_oer_;
extern const TTCN_Typedescriptor_t PCUIF__act__req_spare_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__act__req_spare_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__act__req_raw_;
extern const TTCN_Typedescriptor_t PCUIF__act__req_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__act__req_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__time__ind_fn_raw_;
extern const XERdescriptor_t PCUIF__time__ind_fn_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__time__ind_fn_json_;
extern const TTCN_OERdescriptor_t PCUIF__time__ind_fn_oer_;
extern const TTCN_Typedescriptor_t PCUIF__time__ind_fn_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__time__ind_fn_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__time__ind_raw_;
extern const TTCN_Typedescriptor_t PCUIF__time__ind_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__time__ind_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__pag__req_sapi_raw_;
extern const TTCN_Typedescriptor_t PCUIF__pag__req_sapi_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__pag__req_sapi_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__pag__req_chan__needed_raw_;
extern const XERdescriptor_t PCUIF__pag__req_chan__needed_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__pag__req_chan__needed_json_;
extern const TTCN_OERdescriptor_t PCUIF__pag__req_chan__needed_oer_;
extern const TTCN_Typedescriptor_t PCUIF__pag__req_chan__needed_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__pag__req_chan__needed_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__pag__req_identity__lv_raw_;
extern const XERdescriptor_t PCUIF__pag__req_identity__lv_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__pag__req_identity__lv_json_;
extern const TTCN_OERdescriptor_t PCUIF__pag__req_identity__lv_oer_;
extern const TTCN_Typedescriptor_t PCUIF__pag__req_identity__lv_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__pag__req_identity__lv_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__pag__req_raw_;
extern const TTCN_Typedescriptor_t PCUIF__pag__req_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__pag__req_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__susp__req_tlli_raw_;
extern const XERdescriptor_t PCUIF__susp__req_tlli_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__susp__req_tlli_json_;
extern const TTCN_OERdescriptor_t PCUIF__susp__req_tlli_oer_;
extern const TTCN_Typedescriptor_t PCUIF__susp__req_tlli_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__susp__req_tlli_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__susp__req_ra__id_raw_;
extern const XERdescriptor_t PCUIF__susp__req_ra__id_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__susp__req_ra__id_json_;
extern const TTCN_OERdescriptor_t PCUIF__susp__req_ra__id_oer_;
extern const TTCN_Typedescriptor_t PCUIF__susp__req_ra__id_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__susp__req_ra__id_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__susp__req_cause_raw_;
extern const XERdescriptor_t PCUIF__susp__req_cause_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__susp__req_cause_json_;
extern const TTCN_OERdescriptor_t PCUIF__susp__req_cause_oer_;
extern const TTCN_Typedescriptor_t PCUIF__susp__req_cause_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__susp__req_cause_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__susp__req_raw_;
extern const TTCN_Typedescriptor_t PCUIF__susp__req_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__susp__req_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__MsgUnion_raw_;
extern const TTCN_Typedescriptor_t PCUIF__MsgUnion_descr_;
extern const TTCN_RAWdescriptor_t PCUIF__MsgUnion_data__req_raw_;
extern const TTCN_Typedescriptor_t PCUIF__MsgUnion_data__req_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__MsgUnion_data__req_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__MsgUnion_data__cnf_raw_;
extern const TTCN_Typedescriptor_t PCUIF__MsgUnion_data__cnf_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__MsgUnion_data__cnf_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__MsgUnion_data__cnf__dt_raw_;
extern const TTCN_Typedescriptor_t PCUIF__MsgUnion_data__cnf__dt_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__MsgUnion_data__cnf__dt_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__MsgUnion_data__ind_raw_;
extern const TTCN_Typedescriptor_t PCUIF__MsgUnion_data__ind_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__MsgUnion_data__ind_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__MsgUnion_susp__req_raw_;
extern const TTCN_Typedescriptor_t PCUIF__MsgUnion_susp__req_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__MsgUnion_susp__req_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__MsgUnion_rts__req_raw_;
extern const TTCN_Typedescriptor_t PCUIF__MsgUnion_rts__req_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__MsgUnion_rts__req_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__MsgUnion_rach__ind_raw_;
extern const TTCN_Typedescriptor_t PCUIF__MsgUnion_rach__ind_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__MsgUnion_rach__ind_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__MsgUnion_txt__ind_raw_;
extern const TTCN_Typedescriptor_t PCUIF__MsgUnion_txt__ind_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__MsgUnion_txt__ind_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__MsgUnion_info__ind_raw_;
extern const TTCN_Typedescriptor_t PCUIF__MsgUnion_info__ind_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__MsgUnion_info__ind_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__MsgUnion_act__req_raw_;
extern const TTCN_Typedescriptor_t PCUIF__MsgUnion_act__req_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__MsgUnion_act__req_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__MsgUnion_time__ind_raw_;
extern const TTCN_Typedescriptor_t PCUIF__MsgUnion_time__ind_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__MsgUnion_time__ind_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__MsgUnion_pag__req_raw_;
extern const TTCN_Typedescriptor_t PCUIF__MsgUnion_pag__req_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__MsgUnion_pag__req_default_coding;
extern UNIVERSAL_CHARSTRING PCUIF__MsgUnion_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Message_msg__type_raw_;
extern const TTCN_Typedescriptor_t PCUIF__Message_msg__type_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Message_msg__type_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Message_bts__nr_raw_;
extern const XERdescriptor_t PCUIF__Message_bts__nr_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Message_bts__nr_json_;
extern const TTCN_OERdescriptor_t PCUIF__Message_bts__nr_oer_;
extern const TTCN_Typedescriptor_t PCUIF__Message_bts__nr_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Message_bts__nr_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Message_spare_raw_;
extern const XERdescriptor_t PCUIF__Message_spare_xer_;
extern const TTCN_JSONdescriptor_t PCUIF__Message_spare_json_;
extern const TTCN_OERdescriptor_t PCUIF__Message_spare_oer_;
extern const TTCN_Typedescriptor_t PCUIF__Message_spare_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Message_spare_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Message_u_raw_;
extern const TTCN_Typedescriptor_t PCUIF__Message_u_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Message_u_default_coding;
extern const TTCN_RAWdescriptor_t PCUIF__Message_raw_;
extern const TTCN_Typedescriptor_t PCUIF__Message_descr_;
extern UNIVERSAL_CHARSTRING PCUIF__Message_default_coding;
extern const INTEGER_template& tr__PCUIF__RTS__REQ_bts__nr_defval;
extern const INTEGER_template& tr__PCUIF__RTS__REQ_trx__nr_defval;
extern const INTEGER_template& tr__PCUIF__RTS__REQ_ts__nr_defval;
extern const PCUIF__Sapi_template& tr__PCUIF__RTS__REQ_sapi_defval;
extern const INTEGER_template& tr__PCUIF__RTS__REQ_fn_defval;
extern const INTEGER_template& tr__PCUIF__RTS__REQ_block__nr_defval;
extern const INTEGER_template& tr__PCUIF__DATA__IND_bts__nr_defval;
extern const INTEGER_template& tr__PCUIF__DATA__IND_trx__nr_defval;
extern const INTEGER_template& tr__PCUIF__DATA__IND_ts__nr_defval;
extern const INTEGER_template& tr__PCUIF__DATA__IND_block__nr_defval;
extern const PCUIF__Sapi_template& tr__PCUIF__DATA__IND_sapi_defval;
extern const OCTETSTRING_template& tr__PCUIF__DATA__IND_data_defval;
extern const INTEGER_template& tr__PCUIF__DATA__CNF_bts__nr_defval;
extern const INTEGER_template& tr__PCUIF__DATA__CNF_trx__nr_defval;
extern const INTEGER_template& tr__PCUIF__DATA__CNF_ts__nr_defval;
extern const PCUIF__Sapi_template& tr__PCUIF__DATA__CNF_sapi_defval;
extern const OCTETSTRING_template& tr__PCUIF__DATA__CNF_data_defval;
extern const INTEGER_template& tr__PCUIF__RACH__IND_bts__nr_defval;
extern const INTEGER_template& tr__PCUIF__RACH__IND_ra_defval;
extern const INTEGER_template& tr__PCUIF__RACH__IND_is__11bit_defval;
extern const INTEGER_template& tr__PCUIF__RACH__IND_burst__type_defval;
extern const INTEGER_template& tr__PCUIF__RACH__IND_fn_defval;
extern const INTEGER_template& tr__PCUIF__PAG__REQ_bts__nr_defval;
extern const OCTETSTRING_template& tr__PCUIF__PAG__REQ_id__lv_defval;
extern const INTEGER_template& tr__PCUIF__PAG__REQ_chan__needed_defval;
extern const PCUIF__Sapi_template& tr__PCUIF__PAG__REQ_sapi_defval;
extern const INTEGER_template& tr__PCUIF__INFO__IND_bts__nr_defval;
extern const PCUIF__Flags_template& tr__PCUIF__INFO__IND_flags_defval;
extern const INTEGER_template& tr__PCUIF__INFO__IND_version_defval;
extern TTCN_Module module_object;

} /* end of namespace */

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