Fixing an issue with output parameters that are of type IntPtr
[castle.git] / Experiments / Attic / Rook / Castle.Rook.Compiler / Parser / antlr / debug / NewLineEventArgs.cs
blob236c3ec4e1897e170941ccb17703f4f5b62efe53
1 namespace antlr.debug
3 using System;
5 public class NewLineEventArgs : ANTLREventArgs
7 public NewLineEventArgs()
10 public NewLineEventArgs(int line)
12 Line = line;
15 public virtual int Line
17 get { return this.line_; }
18 set { this.line_ = value; }
21 private int line_;
24 /// <summary>This should NOT be called from anyone other than ParserEventSupport!
25 /// </summary>
26 public override string ToString()
28 return "NewLineEvent [" + line_ + "]";