| 252 | } |
| 253 | |
| 254 | std::size_t ModuleResource::Hash() const |
| 255 | { |
| 256 | if (!IsValid()) return 0; |
| 257 | using namespace std; |
| 258 | return std::hash<std::string>()(d->resourceContainer->GetModuleInfo()->name + this->GetResourcePath()); |
| 259 | } |
| 260 | |
| 261 | void* ModuleResource::GetData() const |
| 262 | { |
no test coverage detected