Browse Source

add iterators

synchronous
Volker Birk 5 years ago
parent
commit
2ee3da10f9
  1. 2
      passphrase_cache.hh

2
passphrase_cache.hh

@ -22,6 +22,8 @@ namespace pEp {
time_point tp;
};
using cache = std::list<cache_entry>;
using interator = cache::iterator;
using const_iterator = cache::const_iterator;
cache _cache;
std::mutex _mtx;

Loading…
Cancel
Save