#include <MetadataPrinter.h>
Definition at line 36 of file MetadataPrinter.h.
◆ MetadataPrinterRegistry()
| circledump::MetadataPrinterRegistry::MetadataPrinterRegistry |
( |
| ) |
|
Definition at line 113 of file MetadataPrinter.cpp.
114{
115 _metadata_map["ONE_source_table"] = std::make_unique<SourceTablePrinter>();
116 _metadata_map["ONE_op_table"] = std::make_unique<OpTablePrinter>();
117}
◆ get()
◆ lookup()
| const MetadataPrinter * circledump::MetadataPrinterRegistry::lookup |
( |
std::string |
op | ) |
const |
|
inline |
Definition at line 42 of file MetadataPrinter.h.
43 {
44 if (_metadata_map.find(op) == _metadata_map.end())
45 return nullptr;
46
47 return _metadata_map.at(op).get();
48 }
The documentation for this class was generated from the following files: