| 275 | |
| 276 | |
| 277 | void BpfHeader::dump() |
| 278 | { |
| 279 | using namespace std; |
| 280 | |
| 281 | cerr << "Length: " << m_len << "!\n"; |
| 282 | cerr << "Diemsions: " << (int)m_numDim << "!\n"; |
| 283 | cerr << "Interleave: " << (int)m_pointFormat << "!\n"; |
| 284 | cerr << "Compression: " << (int)m_compression << "!\n"; |
| 285 | cerr << "Point count: " << m_numPts << "!\n"; |
| 286 | cerr << "Coordinate type: " << m_coordType << "!\n"; |
| 287 | cerr << "Coordinate ID: " << m_coordId << "!\n"; |
| 288 | cerr << "Spacing: " << m_spacing << "!\n"; |
| 289 | cerr << "Start time: " << m_startTime << "!\n"; |
| 290 | cerr << "End time: " << m_endTime << "!\n"; |
| 291 | } |
| 292 | |
| 293 | |
| 294 | bool BpfDimension::read(ILeStream& stream, BpfDimensionList& dims, size_t start) |
no outgoing calls
no test coverage detected