blob: 981e78b0be157cb3e074e3b00527a04dcef9cbfb [file] [log] [blame]
Lev Walkinea6635b2017-08-06 23:23:04 -07001ModuleComponentRelationConstraint { iso org(3) dod(6) internet(1) private(4)
2 enterprise(1) spelio(9363) software(1) asn1c(5) test(1) 140 }
3DEFINITIONS ::=
4BEGIN
5
6Frame ::= SEQUENCE {
7 ident FRAME-STRUCTURE.&id ({FrameTypes}),
8 value FRAME-STRUCTURE.&Type ({FrameTypes}{@.ident}),
9 ...
10}
11
12FRAME-STRUCTURE ::= CLASS {
13 &id INTEGER UNIQUE,
14 &Type ANY
15} WITH SYNTAX {&Type IDENTIFIED BY &id}
16
Lev Walkind0f7b912017-08-07 18:13:04 -070017-- Information Object Set has 2 entries:
Lev Walkinea6635b2017-08-06 23:23:04 -070018-- [ &id][ &Type]
19-- [1] basicMessage PrimitiveMessage
20-- [2] 2 ComplexMessage
21
22
23FrameTypes FRAME-STRUCTURE ::= {{ PrimitiveMessage IDENTIFIED BY basicMessage } | { ComplexMessage IDENTIFIED BY 2 },...}
Lev Walkind0f7b912017-08-07 18:13:04 -070024-- Information Object Set has 2 entries:
25-- [ &id][ &Type]
26-- [1] basicMessage PrimitiveMessage
27-- [2] 2 ComplexMessage
28
Lev Walkinea6635b2017-08-06 23:23:04 -070029
30primType FRAME-STRUCTURE ::= { PrimitiveMessage IDENTIFIED BY basicMessage }
Lev Walkind0f7b912017-08-07 18:13:04 -070031-- Information Object Set has 1 entry:
32-- [ &id][ &Type]
33-- [1] basicMessage PrimitiveMessage
34
Lev Walkinea6635b2017-08-06 23:23:04 -070035
36complexType FRAME-STRUCTURE ::= { ComplexMessage IDENTIFIED BY 2 }
Lev Walkind0f7b912017-08-07 18:13:04 -070037-- Information Object Set has 1 entry:
38-- [ &id][ &Type]
39-- [1] 2 ComplexMessage
40
Lev Walkinea6635b2017-08-06 23:23:04 -070041
42PrimitiveMessage ::= SEQUENCE { }
43
44ComplexMessage ::= SEQUENCE { }
45
46basicMessage INTEGER ::= 1
47
48END