dmd/src/dmd/arraytypes.h ?

Walter Bright newshound at digitalmars.com
Wed Apr 26 22:57:49 PDT 2006


Gregor Richards wrote:
> Long story short: Walter (or anyone else with access): Can you add 
> dmd/arraytypes.h to the source as distributed in DMD?  Or if I'm 
> mistaken and it's not supposed to be included, explain briefly its 
> purpose and interface?

Sure. Here it is, for now:
----------------------------
> // Copyright (c) 2006 by Digital Mars
> // All Rights Reserved
> // written by Walter Bright
> // www.digitalmars.com
> // License for redistribution is by either the Artistic License
> // in artistic.txt, or the GNU General Public License in gnu.txt.
> // See the included readme.txt for details.
> 
> #ifndef DMD_ARRAYTYPES_H
> #define DMD_ARRAYTYPES_H
> 
> #ifdef __DMC__
> #pragma once
> #endif /* __DMC__ */
> 
> 
> #include "root.h"
> 
> struct Expression;
> struct Statement;
> struct BaseClass;
> struct TemplateParameter;
> 
> struct TemplateParameters : Array { };
> 
> struct Expressions : Array { };
> 
> struct Statements : Array { };
> 
> struct BaseClasses : Array { };
> 
> struct ClassDeclarations : Array { };
> 
> struct Dsymbols : Array { };
> 
> struct Objects : Array { };
> 
> #endif



More information about the Digitalmars-d mailing list