ChangeLog: Updated ChangeLog
[mono.git] / mcs / class / System.Drawing / System.Drawing.Imaging / ColorMap.cs
1 //
2 // System.Drawing.Imaging.ColorMap.cs
3 //
4 // Authors:
5 //   Everaldo Canuto (everaldo.canuto@bol.com.br)
6 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
7 //   Dennis Hayes (dennish@raytek.com)
8 //
9 // (C) 2002 Ximian, Inc.  http://www.ximian.com
10 //
11
12 using System;
13 using System.IO;
14 using System.Reflection;
15
16 namespace System.Drawing.Imaging {
17
18         public sealed class ColorMap {
19
20                 private Color newColor;
21                 private Color oldColor;
22
23                 // constructors
24                 public ColorMap() {
25                 }
26
27                 // properties
28                 public Color NewColor {
29                         get { return newColor; }
30                         set { newColor = value; }
31                 }
32
33                 public Color OldColor {
34                         get { return oldColor; }
35                         set { oldColor = value; }
36                 }
37         }
38
39 }