1 #ifndef DBALLE_DB_V7_CACHE_H 2 #define DBALLE_DB_V7_CACHE_H 5 #include <unordered_map> 26 LevTrEntry(
int id,
const Level& level,
const Trange& trange) : id(id), level(level), trange(trange) {}
37 std::ostream& operator<<(std::ostream&,
const LevTrEntry&);
48 std::unordered_map<int, LevTrEntry*> by_id;
62 const LevTrEntry* insert(std::unique_ptr<LevTrEntry> e);
Common base types used by most of DB-All.e code.
Information on how a value has been sampled or computed with regards to time.
Definition: types.h:683
Trange trange
Time range.
Definition: cache.h:23
Vertical level or layer.
Definition: types.h:621
Level level
Vertical level or layer.
Definition: cache.h:20