comparison dmd/hdrgen.h @ 1:c53b6e3fe49a trunk

[svn r5] Initial commit. Most things are very rough.
author lindquist
date Sat, 01 Sep 2007 21:43:27 +0200
parents
children
comparison
equal deleted inserted replaced
0:a9e71648e74d 1:c53b6e3fe49a
1
2 // Compiler implementation of the D programming language
3 // Copyright (c) 1999-2006 by Digital Mars
4 // All Rights Reserved
5 // initial header generation implementation by Dave Fladebo
6 // http://www.digitalmars.com
7 // License for redistribution is by either the Artistic License
8 // in artistic.txt, or the GNU General Public License in gnu.txt.
9 // See the included readme.txt for details.
10
11
12 struct HdrGenState
13 {
14 int hdrgen; // 1 if generating header file
15 int ddoc; // 1 if generating Ddoc file
16 int console; // 1 if writing to console
17 int tpltMember;
18 int inCallExp;
19 int inPtrExp;
20 int inSlcExp;
21 int inDotExp;
22 int inBinExp;
23 int inArrExp;
24 int emitInst;
25 struct
26 {
27 int init;
28 int decl;
29 } FLinit;
30
31 HdrGenState() { memset(this, 0, sizeof(HdrGenState)); }
32 };
33
34