Browse Source

Added helper declaration to represent delegates.

pull/1/head
triton 13 years ago
parent
commit
7821b88347
  1. 12
      src/Bridge/Delegate.cs

12
src/Bridge/Delegate.cs

@ -0,0 +1,12 @@ @@ -0,0 +1,12 @@
namespace Cxxi
{
public class Delegate : Declaration
{
public FunctionType Type;
public override T Visit<T>(IDeclVisitor<T> visitor)
{
return visitor.VisitDeclaration(this);
}
}
}
Loading…
Cancel
Save