| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // System.Drawing.Imaging.ColorMap.cs
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- // Author: Everaldo Canuto
- // eMail: [email protected]
- // Dennis Hayes ([email protected])
- //
- 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 (); }
- }
- }
- }
|