lsst.utils  16.0-4-gd6aeece
CacheFwd.h
Go to the documentation of this file.
1 #ifndef LSST_UTILS_CACHE_FWD_H
2 #define LSST_UTILS_CACHE_FWD_H
3 
9 #include <functional> // std::equal_to, std::hash
10 
11 namespace lsst {
12 namespace utils {
13 
14 template <typename Key, typename Value, typename KeyHash=std::hash<Key>,
15  typename KeyPred=std::equal_to<Key>>
16 class Cache;
17 
18 }} // namespace lsst::utils
19 
20 #endif // ifndef LSST_UTILS_CACHE_FWD_H
Forward declarations for lsst::utils::Cache.