示例#1
0
 /// <summary>
 /// Constructor.
 /// </summary>
 public VoiLutManager(IVoiLutInstaller voiLutInstaller, bool allowDisable)
 {
     Platform.CheckForNullReference(voiLutInstaller, "voiLutInstaller");
     _voiLutInstaller = voiLutInstaller;
     _allowDisable    = allowDisable;
 }
示例#2
0
		/// <summary>
		/// Constructor.
		/// </summary>
		public VoiLutManager(IVoiLutInstaller voiLutInstaller, bool allowDisable)
		{
			Platform.CheckForNullReference(voiLutInstaller, "voiLutInstaller");
			_voiLutInstaller = voiLutInstaller;
			_allowDisable = allowDisable;
		}
示例#3
0
 public XVoiLutInstaller(IVoiLutInstaller source)
 {
     DefaultInvert = this.Invert = source.Invert;
     this.VoiLut   = source.VoiLut.Clone();
 }