Artifact 79038e8ac0f7ba6a0343b9689b0affd4f93f7481
/**
* Authors: k.inaba
* License: NYSL 0.9982 http://www.kmonos.net/nysl/
*
* Definition of constants related to the layers.
*/
module polemy.layer;
import polemy._common;
import polemy.failure;
/// Type for the layer ID
alias string Layer;
enum : Layer
{
SystemLayer = "(system)", /// Predefined layer for internal data
ValueLayer = "@value", /// Predefined layer for normal run
MacroLayer = "@macro", /// Predefined layer for macro run
RawMacroLayer = "(rawmacro)", /// Predefined layer for raw-macro run
}