| 559 | } |
| 560 | |
| 561 | std::string FileFormat::getName() const |
| 562 | { |
| 563 | FormatInfoVec infoVec; |
| 564 | getFormatInfo(infoVec); |
| 565 | if(infoVec.size()>0) |
| 566 | { |
| 567 | return infoVec[0].name; |
| 568 | } |
| 569 | return "Unknown Format"; |
| 570 | } |
| 571 | |
| 572 | void FileFormat::bake(const Baker & /*baker*/, |
| 573 | const std::string & formatName, |
no test coverage detected