|
Revision 605, 0.5 kB
(checked in by walter, 2 years ago)
|
bugzilla 4516 Regression(2.040): forward declaration of enum not supported
|
| Line | |
|---|
| 1 |
// Compiler implementation of the D programming language |
|---|
| 2 |
// Copyright (c) 1999-2008 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_JSON_H |
|---|
| 11 |
#define DMD_JSON_H |
|---|
| 12 |
|
|---|
| 13 |
#ifdef __DMC__ |
|---|
| 14 |
#pragma once |
|---|
| 15 |
#endif /* __DMC__ */ |
|---|
| 16 |
|
|---|
| 17 |
struct Array; |
|---|
| 18 |
|
|---|
| 19 |
void json_generate(Array *); |
|---|
| 20 |
|
|---|
| 21 |
#endif /* DMD_JSON_H */ |
|---|