| 40 | using std::getline; |
| 41 | |
| 42 | BinaryFileStream::BinaryFileStream() |
| 43 | :OPS_Stream(OPS_STREAM_TAGS_BinaryFileStream), |
| 44 | fileOpen(0), fileName(0), sendSelfCount(0), |
| 45 | theChannels(0), numDataRows(0), |
| 46 | mapping(0), maxCount(0), sizeColumns(0), theColumns(0), theData(0), theRemoteData(0) |
| 47 | { |
| 48 | |
| 49 | } |
| 50 | |
| 51 | BinaryFileStream::BinaryFileStream(const char *file, openMode mode) |
| 52 | :OPS_Stream(OPS_STREAM_TAGS_BinaryFileStream), |