@brief Registers new registry to repository.
| 1464 | |
| 1465 | /// @brief Registers new registry to repository. |
| 1466 | virtual void registerNew(const T_Key& uniqKey, T_Ptr* ptr) ELPP_FINAL { |
| 1467 | unregister(uniqKey); |
| 1468 | this->list().insert(std::make_pair(uniqKey, ptr)); |
| 1469 | } |
| 1470 | |
| 1471 | /// @brief Unregisters single entry mapped to specified unique key |
| 1472 | void unregister(const T_Key& uniqKey) { |
nothing calls this directly
no outgoing calls
no test coverage detected