Overview
SHA1 Hash: | c31679056981f7ae26c1fdad25c46b6d15ac56ec |
---|---|
Date: | 2010-11-21 18:53:48 |
User: | kinaba |
Comment: | forgot to add layer.d |
Timelines: | family | ancestors | descendants | both | trunk |
Downloads: | Tarball | ZIP archive |
Other Links: | files | file ages | manifest |
Tags And Properties
- branch=trunk inherited from [f65680e1d2]
- sym-trunk inherited from [f65680e1d2]
Changes
Added polemy/layer.d version [91a3b7f2c4f61824]
1 +/** 2 + * Authors: k.inaba 3 + * License: NYSL 0.9982 http://www.kmonos.net/nysl/ 4 + * 5 + * Definition of constants related to the layers. 6 + */ 7 +module polemy.layer; 8 +import polemy._common; 9 +import polemy.failure; 10 + 11 +/// Type for the layer ID 12 + 13 +alias string Layer; 14 + 15 +enum : Layer 16 +{ 17 + SystemLayer = "(system)", /// Predefined layer for internal data 18 + ValueLayer = "@value", /// Predefined layer for normal run 19 + MacroLayer = "@macro", /// Predefined layer for macro run 20 +}