using System; namespace Swan { /// /// Defines a set of bitwise standard terminal writers. /// [Flags] public enum TerminalWriters { /// /// Prevents output /// None = 0, /// /// Writes to the Console.Out /// StandardOutput = 1, /// /// Writes to the Console.Error /// StandardError = 2, /// /// Writes to all possible terminal writers /// All = StandardOutput | StandardError, } }