Recovered from cvs revision 2007-10-01 11:45:00

This commit is contained in:
2007-10-02 00:22:00 +00:00
parent 5c8dda1041
commit 6bc6f6c9db
11 changed files with 445 additions and 89 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: Awk.cs,v 1.3 2007/09/18 14:30:41 bacon Exp $
* $Id: Awk.cs,v 1.4 2007/09/30 15:12:20 bacon Exp $
*/
using System;
@ -154,10 +154,10 @@ namespace ase.com
set { awk.StripSpaces = value; }
}
public bool Nextofile
public bool EnableNextofile
{
get { return awk.Nextofile; }
set { awk.Nextofile = value; }
get { return awk.EnableNextofile; }
set { awk.EnableNextofile = value; }
}
public bool Usecrlf
@ -166,6 +166,18 @@ namespace ase.com
set { awk.UseCrlf = value; }
}
public bool EnableReset
{
get { return awk.EnableReset; }
set { awk.EnableReset = value; }
}
public bool AllowMapToVar
{
get { return awk.AllowMapToVar; }
set { awk.AllowMapToVar = value; }
}
public string EntryPoint
{
get { return awk.EntryPoint; }