Default destructor
| 78 | |
| 79 | // Default destructor |
| 80 | CacheDisk::~CacheDisk() |
| 81 | { |
| 82 | Clear(); |
| 83 | |
| 84 | // remove mutex |
| 85 | delete cacheMutex; |
| 86 | } |
| 87 | |
| 88 | // Add a Frame to the cache |
| 89 | void CacheDisk::Add(std::shared_ptr<Frame> frame) |
nothing calls this directly
no outgoing calls
no test coverage detected