annotate compile/forward_reference_02.d @ 100:b466817daa05

ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
author thomask
date Wed, 03 Nov 2004 09:39:38 +0000
parents
children 8a2ff09d62cb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
100
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
1 // @author@ ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142)
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
2 // @date@ 2004-10-12
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
3 // @url@ http://www.dsource.org/forums/viewtopic.php?t=402
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
4
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
5 module dstress.compile.forward_reference_02;
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
6
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
7 struct Bounds{
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
8 int Bottom = 0;
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
9 int Left = 0;
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
10 int Right = 0;
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
11 int Top = 0;
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
12 }
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
13
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
14 struct Position{
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
15 int X = 0;
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
16 int Y = 0;
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
17 }
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
18
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
19 class Something{
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
20 Bounds bounds;
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
21 Position position;
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
22 }
b466817daa05 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402
thomask
parents:
diff changeset
23