#region --------------- Copyright Dresser Wayne Pignone ------------- /* * $Log: /Wrk/WayneLibraries/Wrk/StateEngine/StateNameKindEnum.cs $ * * 1 08-02-26 14:10 Mattias.larsson * Created. */ #endregion using System; namespace Wayne.Lib.StateEngine { /// <summary> /// The two kinds of names for a state. /// </summary> public enum StateNameKind { /// <summary> /// The factory name of a state (the full class name). /// </summary> FactoryName, /// <summary> /// The name of this particular instance of a state (the hierarchical name of the state, /// starting with the name of the statemachine, through all parent composite states up to the state itself). /// </summary> InstanceName } }