| 37 | using namespace std; |
| 38 | |
| 39 | class DirIvCacheNode { |
| 40 | |
| 41 | public: |
| 42 | wstring m_key; |
| 43 | unsigned char m_dir_iv[DIR_IV_LEN]; |
| 44 | list<DirIvCacheNode*>::iterator m_list_it; // holds position in lru list |
| 45 | ULONGLONG m_timestamp; // milliseconds |
| 46 | FILETIME m_last_write_time; |
| 47 | // disallow copying |
| 48 | DirIvCacheNode(DirIvCacheNode const&) = delete; |
| 49 | void operator=(DirIvCacheNode const&) = delete; |
| 50 | |
| 51 | DirIvCacheNode(); |
| 52 | virtual ~DirIvCacheNode(); |
| 53 | }; |
| 54 | |
| 55 | |
| 56 | #define DIR_IV_CACHE_ENTRIES 100 |
nothing calls this directly
no outgoing calls
no test coverage detected