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

« back to all changes in this revision

Viewing changes to lib/asn1/test/asn1_SUITE_data/Mod4.asn

  • 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
Mod4 DEFINITIONS AUTOMATIC TAGS ::=
 
2
 
 
3
 
 
4
BEGIN
 
5
 
 
6
IMPORTS
 
7
    PersonName
 
8
    FROM Mod3
 
9
    OtherName,FirstName,FamilyName
 
10
    FROM Mod2;
 
11
 
 
12
Time ::= SEQUENCE {
 
13
  year  OCTET STRING(SIZE(4)),
 
14
  month OCTET STRING(SIZE(2)),
 
15
  hour  INTEGER,
 
16
  minute INTEGER
 
17
}
 
18
 
 
19
Name ::= CHOICE {
 
20
  person PersonName,
 
21
  othername OtherName
 
22
}
 
23
 
 
24
 
 
25
 
 
26
LocName ::= SEQUENCE {
 
27
  region ENUMERATED{gotaland,svealand,norrland},
 
28
  name  PrintableString
 
29
}
 
30
 
 
31
ThingName ::= PrintableString
 
32
 
 
33
END