// // System.Drawing.Imaging.ColorMap.cs // // (C) 2002 Ximian, Inc. http://www.ximian.com // Author: Everaldo Canuto // eMail: everaldo.canuto@bol.com.br // Dennis Hayes (dennish@raytek.com) // using System; using System.IO; using System.Reflection; namespace System.Drawing.Imaging { public sealed class ColorMap { // constructors //[MonoTODO] public ColorMap() { throw new NotImplementedException (); } // properties //[MonoTODO] public Color NewColor { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } //[MonoTODO] public Color OldColor { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } } }