| 47 | using namespace StacUtils; |
| 48 | |
| 49 | Catalog::Catalog(const NL::json& json, |
| 50 | const std::string& catPath, |
| 51 | const connector::Connector& connector, |
| 52 | ThreadPool& pool, |
| 53 | bool validate, |
| 54 | LogPtr log) : |
| 55 | m_json(json), m_path(catPath), m_connector(connector), |
| 56 | m_pool(pool), m_validate(validate), m_log(log) |
| 57 | {} |
| 58 | |
| 59 | Catalog::~Catalog() |
| 60 | {} |
nothing calls this directly
no outgoing calls
no test coverage detected