* SetWin32ContextInIDispatchAttribute.cs: added
[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 using System;
11
12 namespace System.Runtime.InteropServices 
13 {
14         [AttributeUsage (AttributeTargets.Assembly, Inherited = false)]
15         public sealed class SetWin32ContextInIDispatchAttribute : Attribute
16         {
17                 public SetWin32ContextInIDispatchAttribute ()
18                 {
19                 }
20         }
21 }
22