Fixing an issue with output parameters that are of type IntPtr
[castle.git] / MonoRail / NewGenerator / Castle.NewGenerator.Core / Attributes / GeneratorPanelAttribute.cs
blobe88a372a7cf4dd7619aa4c3718270eabfd90494c
1 namespace Castle.NewGenerator.Core
3 using System;
5 public class GeneratorPanelAttribute : Attribute
7 private readonly Type panelType;
9 public GeneratorPanelAttribute(Type panelType)
11 this.panelType = panelType;