| 168 | static InternedString emptyString(""); |
| 169 | |
| 170 | IndexedIO::Entry::Entry() : m_ID(emptyString), m_entryType( IndexedIO::Directory), m_dataType( IndexedIO::Invalid), m_arrayLength(0) |
| 171 | { |
| 172 | } |
| 173 | |
| 174 | IndexedIO::Entry::Entry( const IndexedIO::EntryID &id, IndexedIO::EntryType eType, IndexedIO::DataType dType, size_t arrayLength) |
| 175 | : m_ID(id), m_entryType(eType), m_dataType(dType), m_arrayLength(arrayLength) |
no outgoing calls
no test coverage detected