root/trunk/rebuild/arraytypes.h

Revision 461, 1.0 kB (checked in by Gregor, 2 years ago)

MERGE: dmdfe r460

Line 
1 // Compiler implementation of the D programming language
2 // Copyright (c) 2006-2007 by Digital Mars
3 // All Rights Reserved
4 // written by Walter Bright
5 // http://www.digitalmars.com
6 // License for redistribution is by either the Artistic License
7 // in artistic.txt, or the GNU General Public License in gnu.txt.
8 // See the included readme.txt for details.
9
10 #ifndef DMD_ARRAYTYPES_H
11 #define DMD_ARRAYTYPES_H
12
13 #ifdef __DMC__
14 #pragma once
15 #endif /* __DMC__ */
16
17
18 #include "root.h"
19
20 struct Expression;
21 struct Statement;
22 struct BaseClass;
23 struct TemplateParameter;
24 struct FuncDeclaration;
25 struct Identifier;
26 struct Initializer;
27
28 struct TemplateParameters : Array { };
29
30 struct Expressions : Array { };
31
32 struct Statements : Array { };
33
34 struct BaseClasses : Array { };
35
36 struct ClassDeclarations : Array { };
37
38 struct Dsymbols : Array { };
39
40 struct Objects : Array { };
41
42 struct FuncDeclarations : Array { };
43
44 struct Arguments : Array { };
45
46 struct Identifiers : Array { };
47
48 struct Initializers : Array { };
49
50 #endif
Note: See TracBrowser for help on using the browser.