OmniSciDB
c1a53651b2
|
#include <boost/functional/hash.hpp>
#include <memory>
#include "QueryEngine/CompilationContext.h"
#include "StringDictionary/LruCache.hpp"
Go to the source code of this file.
Typedefs | |
using | CodeCacheKey = std::vector< std::string > |
template<typename CC > | |
using | CodeCacheVal = std::shared_ptr< CC > |
template<typename CC > | |
using | CodeCache = LruCache< CodeCacheKey, CodeCacheVal< CC >, boost::hash< CodeCacheKey >> |
using CodeCache = LruCache<CodeCacheKey, CodeCacheVal<CC>, boost::hash<CodeCacheKey>> |
Definition at line 29 of file CodeCache.h.
using CodeCacheKey = std::vector<std::string> |
Definition at line 25 of file CodeCache.h.
using CodeCacheVal = std::shared_ptr<CC> |
Definition at line 27 of file CodeCache.h.