File: test.10

package info (click to toggle)
javadap 2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 26,104 kB
  • sloc: java: 20,509; exp: 2,333; xml: 518; yacc: 222; csh: 136; makefile: 107; sh: 33; awk: 23
file content (48 lines) | stat: -rw-r--r-- 577 bytes parent folder | download
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
# -*- C++ -*-

dataset {
    structure {
	Int32 i;
	int32 j;
    } test;

    sequence {
	int32 i;
	int32 j[10];
    } test2;

    grid {
      array:
	float64 f[10][10];
      maps:
	int32 g[10];
	int32 h[10];
    } test4;

    List Int32 i[10][20];

    Sequence {
	String name;
	Int32 age;
    } person;

    Structure {
	Int32 j;
	Int32 i;
	Structure {
	    int32 i;
	    float64 f[10];
	} data;
	List String folks;
    } exp;

    Grid {
      Array:
	float64 g[10][10][10];
      Maps:
	float64 lat[10];
	float64 lon[10];
	float64 weirdness[10];
    } strange;

} data6;