| 1499 | } |
| 1500 | |
| 1501 | bool hasSuffix(const std::string& str, const std::string& suffix) |
| 1502 | { |
| 1503 | if (str.length() < suffix.length()) |
| 1504 | { |
| 1505 | return false; |
| 1506 | } |
| 1507 | return str.compare(str.length() - suffix.length(), suffix.length(), suffix) == 0; |
| 1508 | } |
| 1509 | |
| 1510 | bool parseFrameFilename(const std::string& frame_filename, size_t timestamp_sequence[2]) |
| 1511 | { |
no outgoing calls
no test coverage detected