| 194 | } |
| 195 | |
| 196 | std::string ModuleResource::GetCompleteSuffix() const |
| 197 | { |
| 198 | std::size_t index = d->fileName.find_first_of('.'); |
| 199 | return index < d->fileName.size()-1 ? d->fileName.substr(index+1) : std::string(""); |
| 200 | } |
| 201 | |
| 202 | bool ModuleResource::IsDir() const |
| 203 | { |