| 35 | enum DataType { DataTypeUint8 = 0, DataTypeFloat = 1, DataTypeFloat16 = 2, DataTypeNone = 99 }; |
| 36 | |
| 37 | ObjectFile() : objectSpace(0) {} |
| 38 | ObjectFile(const ObjectFile &of) : objectSpace(0) { |
| 39 | fileName = of.fileName; |
| 40 | dataType = of.dataType; |
nothing calls this directly
no outgoing calls
no test coverage detected