ColorMap.cs 769 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // System.Drawing.Imaging.ColorMap.cs
  3. //
  4. // (C) 2002 Ximian, Inc. http://www.ximian.com
  5. // Author: Everaldo Canuto
  6. // eMail: [email protected]
  7. // Dennis Hayes ([email protected])
  8. //
  9. using System;
  10. using System.IO;
  11. using System.Reflection;
  12. namespace System.Drawing.Imaging {
  13. public sealed class ColorMap {
  14. // constructors
  15. //[MonoTODO]
  16. public ColorMap() {
  17. throw new NotImplementedException ();
  18. }
  19. // properties
  20. //[MonoTODO]
  21. public Color NewColor {
  22. get { throw new NotImplementedException (); }
  23. set { throw new NotImplementedException (); }
  24. }
  25. //[MonoTODO]
  26. public Color OldColor {
  27. get { throw new NotImplementedException (); }
  28. set { throw new NotImplementedException (); }
  29. }
  30. }
  31. }