Fixed to conform to Mono standards for incomplete functionality.
[mono.git] / mcs / class / Microsoft.VisualBasic / Microsoft.VisualBasic / ComClassAttribute.cs
1 //
2 // ComClassAttribute.cs
3 //
4 // Author:
5 //   Chris J Breisch (cjbreisch@altavista.net) 
6 //
7 // (C) 2002 Chris J Breisch
8 //
9
10 using System;
11
12 namespace Microsoft.VisualBasic {
13         [System.AttributeUsageAttribute(System.AttributeTargets.Class)] 
14         sealed public class ComClassAttribute : System.Attribute {
15                 // Declarations
16                 // Constructors
17                 [MonoTODO]
18                 ComClassAttribute(System.String _ClassID) { throw new NotImplementedException (); }
19                 [MonoTODO]
20                 ComClassAttribute(System.String _ClassID, System.String _InterfaceID) { throw new NotImplementedException (); }
21                 [MonoTODO]
22                 ComClassAttribute(System.String _ClassID, System.String _InterfaceID, System.String _EventId) { throw new NotImplementedException (); }
23                 // Properties
24                 [MonoTODO]
25                 public System.String EventID { get { throw new NotImplementedException (); } }
26                 [MonoTODO]
27                 public System.Boolean InterfaceShadows { get { throw new NotImplementedException (); } }
28                 [MonoTODO]
29                 public System.String ClassID { get { throw new NotImplementedException (); } }
30                 [MonoTODO]
31                 public System.String InterfaceID { get { throw new NotImplementedException (); } }
32                 // Methods
33                 // Events
34         };
35 }