added nwio to StdAwk.

added StdAwk::getConcoleCmgr() and StdAwk::setConsoleCmgr().
made io attributes names case-insensitive
This commit is contained in:
2012-08-09 10:15:11 +00:00
parent 998799bd4a
commit 0bacc36751
8 changed files with 274 additions and 64 deletions

View File

@ -69,6 +69,16 @@ void Awk::RIOBase::setHandle (void* handle)
this->riod->handle = handle;
}
int Awk::RIOBase::getUflags () const
{
return this->riod->uflags;
}
void Awk::RIOBase::setUflags (int uflags)
{
this->riod->uflags = uflags;
}
Awk::RIOBase::operator Awk* () const
{
return this->run->awk;