view dmd/PROT.d @ 124:731ab26f07bf

testing tool added
author korDen
date Fri, 03 Sep 2010 21:39:37 +0400
parents 10317f0c89a5
children
line wrap: on
line source

module dmd.PROT;

enum PROT
{
    PROTundefined,
    PROTnone,		// no access
    PROTprivate,
    PROTpackage,
    PROTprotected,
    PROTpublic,
    PROTexport,
}