| 49 | const ImageMapStorage::WrapType wrapType = ImageMapStorage::REPEAT); |
| 50 | |
| 51 | void DeleteImageMap(const ImageMap *im) { |
| 52 | for (boost::unordered_map<std::string, ImageMap *>::iterator it = mapByKey.begin(); it != mapByKey.end(); ++it) { |
| 53 | if (it->second == im) { |
| 54 | delete it->second; |
| 55 | |
| 56 | maps.erase(std::find(maps.begin(), maps.end(), it->second)); |
| 57 | mapByKey.erase(it); |
| 58 | return; |
| 59 | } |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | std::string GetSequenceFileName(const ImageMap *im) const; |
| 64 | u_int GetImageMapIndex(const ImageMap *im) const; |
no test coverage detected