* Constructor for class * * \details Handles bgp notification messages * * \param [in] logPtr Pointer to existing Logger for app logging * \param [in] enable_debug Debug true to enable, false to disable */
| 21 | * \param [in] enable_debug Debug true to enable, false to disable |
| 22 | */ |
| 23 | NotificationMsg::NotificationMsg(Logger *logPtr, bool enable_debug) { |
| 24 | logger = logPtr; |
| 25 | debug = enable_debug; |
| 26 | } |
| 27 | |
| 28 | NotificationMsg::~NotificationMsg() { |
| 29 |
nothing calls this directly
no outgoing calls
no test coverage detected