~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to lib/asn1/test/asn1_SUITE_data/SeqTag.asn1

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2010-03-09 17:34:57 UTC
  • mfrom: (10.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100309173457-4yd6hlcb2osfhx31
Tags: 1:13.b.4-dfsg-3
Manpages in section 1 are needed even if only arch-dependent packages are
built. So, re-enabled them.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SeqTag DEFINITIONS IMPLICIT TAGS ::= 
 
2
 
 
3
BEGIN
 
4
 
 
5
IMPORTS XSet1, XSeqNT, XSeqImp, XSeqExp FROM External;
 
6
 
 
7
SeqTag ::= [APPLICATION 20] SEQUENCE {
 
8
        nt NT,
 
9
        imp Imp,
 
10
        exp Exp }
 
11
 
 
12
SeqTagImp ::= [APPLICATION 21] SEQUENCE {
 
13
        nt [0] NT,
 
14
        imp [1] Imp,
 
15
        exp [2] Exp}
 
16
 
 
17
SeqTagExp ::= [APPLICATION 22] SEQUENCE {
 
18
        nt [0] EXPLICIT NT,
 
19
        imp [1] EXPLICIT Imp,
 
20
        exp [2] EXPLICIT Exp}
 
21
 
 
22
SeqTagX ::= [APPLICATION 30] SEQUENCE {
 
23
        xnt XSeqNT,
 
24
        ximp XSeqImp,
 
25
        xexp XSeqExp }
 
26
 
 
27
SeqTagImpX ::= [APPLICATION 31] SEQUENCE {
 
28
        xnt [3] XSeqNT,
 
29
        ximp [4] XSeqImp,
 
30
        xexp [5] XSeqExp }
 
31
 
 
32
SeqTagExpX ::= [APPLICATION 32] SEQUENCE {
 
33
        xnt [3] EXPLICIT XSeqNT,
 
34
        ximp [4] EXPLICIT XSeqImp,
 
35
        xexp [5] EXPLICIT XSeqExp }
 
36
 
 
37
 
 
38
NT ::= SEQUENCE {
 
39
  os  OCTET STRING,
 
40
  bool  BOOLEAN}
 
41
Imp ::= [1] SEQUENCE {
 
42
  os  OCTET STRING,
 
43
  bool  BOOLEAN}
 
44
Exp ::= [2] EXPLICIT SEQUENCE {
 
45
  os  OCTET STRING,
 
46
  bool  BOOLEAN}
 
47
 
 
48
END