view dmd/PROT.d @ 91:21a53563c840

merge
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Mon, 30 Aug 2010 20:30:04 +0100
parents 10317f0c89a5
children
line wrap: on
line source

module dmd.PROT;

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