| 671 | } |
| 672 | |
| 673 | CUT_DataSource * MemoryDataSource::clone() { |
| 674 | MemoryDataSource* copy = new MemoryDataSource(m_data, m_length, false); |
| 675 | copy->m_pointer = 0; |
| 676 | |
| 677 | return copy; |
| 678 | } |
| 679 | |
| 680 | int MemoryDataSource::Open(OpenMsgType type) { |
| 681 | if (type != UTM_OM_READING) |
nothing calls this directly
no outgoing calls
no test coverage detected