| 113 | } |
| 114 | |
| 115 | void ImageCacheEntry::swap (ImageCacheEntry &other) |
| 116 | { |
| 117 | std::swap (m_opened, other.m_opened); |
| 118 | std::swap (m_layers, other.m_layers); |
| 119 | std::swap (m_trans, other.m_trans); |
| 120 | std::swap (m_width, other.m_width); |
| 121 | std::swap (m_height, other.m_height); |
| 122 | std::swap (m_precious, other.m_precious); |
| 123 | m_data.swap (other.m_data); |
| 124 | } |
| 125 | |
| 126 | std::string ImageCacheEntry::to_string () const |
| 127 | { |
no test coverage detected