Cosmos/source/Cosmos.VS.Windows/Global.cs
Matthijs ter Woord 14856e4afc muxing works now.
2014-12-31 12:36:51 +01:00

19 lines
553 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Cosmos.Debug.Common;
namespace Cosmos.VS.Windows {
static public class Global {
/// <summary>A pipe used to send requests to the AD7Process.</summary>
static public Cosmos.Debug.Common.PipeClient PipeUp;
static public EnvDTE.OutputWindowPane OutputPane;
static Global() {
PipeUp = new Cosmos.Debug.Common.PipeClient(Pipes.UpName);
}
static public Cosmos.Debug.Common.PipeClient ConsoleTextChannel;
}
}