comparison dmd/version.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 aaade6ded589
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 // written by Walter Bright
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 #ifndef DMD_VERSION_H
12 #define DMD_VERSION_H
13
14 #ifdef __DMC__
15 #pragma once
16 #endif /* __DMC__ */
17
18 #include "dsymbol.h"
19
20 struct OutBuffer;
21 struct HdrGenState;
22
23 struct DebugSymbol : Dsymbol
24 {
25 unsigned level;
26
27 DebugSymbol(Loc loc, Identifier *ident);
28 DebugSymbol(Loc loc, unsigned level);
29 Dsymbol *syntaxCopy(Dsymbol *);
30
31 int addMember(Scope *sc, ScopeDsymbol *s, int memnum);
32 void semantic(Scope *sc);
33 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
34 char *kind();
35 };
36
37 struct VersionSymbol : Dsymbol
38 {
39 unsigned level;
40
41 VersionSymbol(Loc loc, Identifier *ident);
42 VersionSymbol(Loc loc, unsigned level);
43 Dsymbol *syntaxCopy(Dsymbol *);
44
45 int addMember(Scope *sc, ScopeDsymbol *s, int memnum);
46 void semantic(Scope *sc);
47 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
48 char *kind();
49 };
50
51 #endif /* DMD_VERSION_H */