repo.or.cz
/
castle.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixing an issue with output parameters that are of type IntPtr
[castle.git]
/
MonoRail
/
NewGenerator
/
Castle.NewGenerator.Core
/
Attributes
/
GeneratorPanelAttribute.cs
blob
e88a372a7cf4dd7619aa4c3718270eabfd90494c
1
namespace
Castle
.
NewGenerator
.
Core
2
{
3
using
System
;
4
5
public class
GeneratorPanelAttribute
:
Attribute
6
{
7
private readonly
Type panelType
;
8
9
public
GeneratorPanelAttribute
(
Type panelType
)
10
{
11
this
.
panelType
=
panelType
;
12
}
13
}
14
}