2002-01-05 Nick Drochak <ndrochak@gol.com>
[mono.git] / mcs / class / corlib / System / ContextBoundObject.cs
1 //
2 // System.ContextBoundObject.cs
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9 // TODO: Mucho left to implement.
10 //
11
12 namespace System {
13
14         /// <summary>
15         ///   Base class for all the context-bound classes
16         /// </summary>
17         [MonoTODO]
18         public abstract class ContextBoundObject {
19
20                 protected ContextBoundObject ()
21                 {
22                 }
23         }
24 }