mirror of
https://github.com/dlang/phobos.git
synced 2025-05-03 00:20:26 +03:00
phobos 2.004
This commit is contained in:
parent
d90858f401
commit
c31f87641e
7 changed files with 172 additions and 27 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue