#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 { /// /// The two kinds of names for a state. /// public enum StateNameKind { /// /// The factory name of a state (the full class name). /// FactoryName, /// /// 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). /// InstanceName } }