595d594
< ostream *os;
602a602
> OutputStream *out;
605c605
< os = simout.create(filename, true, true);
---
> out = simout.create(filename, true, true);
610,611c610
< os = simout.openFile(simout.directory() + filename,
< ios::in | ios::out | ios::binary, true);
---
> out = simout.open(filename, ios::in | ios::out | ios::binary, true);
612a612,613
>
> ostream *os(out->stream());
626c627
< simout.close(os);
---
> simout.close(out);