/ Implementation of the TDBDOS class. This is the common class that */ contain all that is common between the TDBDOS and TDBMAP classes. */ /
| 491 | /* contain all that is common between the TDBDOS and TDBMAP classes. */ |
| 492 | /***********************************************************************/ |
| 493 | TDBDOS::TDBDOS(PDOSDEF tdp, PTXF txfp) : TDBASE(tdp) |
| 494 | { |
| 495 | if ((Txfp = txfp)) |
| 496 | Txfp->SetTdbp(this); |
| 497 | |
| 498 | Lrecl = tdp->Lrecl; |
| 499 | AvgLen = tdp->AvgLen; |
| 500 | Ftype = tdp->Recfm; |
| 501 | To_Line = NULL; |
| 502 | //To_BlkIdx = NULL; |
| 503 | To_BlkFil = NULL; |
| 504 | SavFil = NULL; |
| 505 | //Xeval = 0; |
| 506 | Beval = 0; |
| 507 | Abort = false; |
| 508 | Indxd = false; |
| 509 | } // end of TDBDOS standard constructor |
| 510 | |
| 511 | TDBDOS::TDBDOS(PGLOBAL g, PTDBDOS tdbp) : TDBASE(tdbp) |
| 512 | { |