/ GetTable: makes a new TDB of the proper type. */ /
| 347 | /* GetTable: makes a new TDB of the proper type. */ |
| 348 | /***********************************************************************/ |
| 349 | PTDB PRXDEF::GetTable(PGLOBAL g, MODE) |
| 350 | { |
| 351 | if (Catfunc == FNC_COL) |
| 352 | return new(g) TDBTBC(this); |
| 353 | else |
| 354 | return new(g) TDBPRX(this); |
| 355 | |
| 356 | } // end of GetTable |
| 357 | |
| 358 | /* ------------------------------------------------------------------- */ |
| 359 |