2004-05-30 Gert Driesen (drieseng@users.sourceforge.net)
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / SetWin32ContextInIDispatchAttribute.cs
1 //
2 // System.Runtime.InteropServices.SetWin32ContextInIDispatchAttribute.cs
3 //
4 // Author:
5 //   Gert Driesen (drieseng@users.sourceforge.net)
6 //
7 // (C) Novell, Inc.  http://www.ximian.com
8 //
9
10 #if NET_2_0
11
12 using System;
13
14 namespace System.Runtime.InteropServices 
15 {
16         [AttributeUsage (AttributeTargets.Assembly, Inherited = false)]
17         public sealed class SetWin32ContextInIDispatchAttribute : Attribute
18         {
19                 public SetWin32ContextInIDispatchAttribute ()
20                 {
21                 }
22         }
23 }
24
25 #endif