AxWrapperGen.cs 418 B

12345678910111213141516171819202122232425
  1. //
  2. // System.Windows.Forms.Design.AxWrapperGen.cs
  3. //
  4. // Author:
  5. // Gert Driesen ([email protected])
  6. //
  7. // (C) 2004 Novell
  8. //
  9. using System.Collections;
  10. namespace System.Windows.Forms.Design
  11. {
  12. public class AxWrapperGen
  13. {
  14. [MonoTODO]
  15. public AxWrapperGen (Type axType)
  16. {
  17. throw new NotImplementedException ();
  18. }
  19. [MonoTODO]
  20. public static ArrayList GeneratedSources = new ArrayList ();
  21. }
  22. }