____________________________________________________________ Get a numeric value from the input stream.
| 1448 | // Get a numeric value from the input stream. |
| 1449 | // |
| 1450 | static SLONG get_numeric() |
| 1451 | { |
| 1452 | SLONG value[2]; |
| 1453 | |
| 1454 | SSHORT length = get_text((UCHAR*) value, sizeof(value)); |
| 1455 | |
| 1456 | return gds__vax_integer(reinterpret_cast<const UCHAR*>(value), length); |
| 1457 | } |
| 1458 | |
| 1459 | |
| 1460 | //____________________________________________________________ |
no test coverage detected