comparison dmd/total.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 // 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_TOTAL_H
12 #define DMD_TOTAL_H
13
14 #ifdef __DMC__
15 #pragma once
16 #endif /* __DMC__ */
17
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <string.h>
21 #include <assert.h>
22 #include <wchar.h>
23
24 #include "root.h"
25 #include "stringtable.h"
26
27 #include "arraytypes.h"
28 #include "mars.h"
29 #include "lexer.h"
30 #include "parse.h"
31 #include "identifier.h"
32 #include "enum.h"
33 #include "aggregate.h"
34 #include "mtype.h"
35 #include "expression.h"
36 #include "declaration.h"
37 #include "statement.h"
38 #include "scope.h"
39 #include "import.h"
40 #include "module.h"
41 #include "id.h"
42 #include "cond.h"
43 #include "version.h"
44
45 #endif /* DMD_TOTAL_H */