phobos 2.004

This commit is contained in:
Brad Roberts 2007-09-10 07:36:51 +00:00
parent d90858f401
commit c31f87641e
7 changed files with 172 additions and 27 deletions

View file

@ -31,9 +31,11 @@ class ModuleInfo
uint flags; // initialization state
void (*ctor)();
void (*dtor)();
void (*unitTest)();
void (*ctor)(); // module static constructor
void (*dtor)(); // module static destructor
void (*unitTest)(); // module unit tests
const(MemberInfo[]) function(string) xgetMembers; // module getMembers() function
/******************
* Return collection of all modules in the program.