mirror of https://github.com/Icinga/icinga2.git
Made inheritance for Exception class virtual.
Fixed EndpointManager.
This commit is contained in:
parent
59dcfa801c
commit
3f708fce21
|
@ -28,7 +28,7 @@ namespace icinga
|
|||
*
|
||||
* @ingroup base
|
||||
*/
|
||||
class I2_BASE_API Exception : public exception
|
||||
class I2_BASE_API Exception : public virtual exception
|
||||
{
|
||||
public:
|
||||
Exception(void);
|
||||
|
|
|
@ -77,6 +77,8 @@ private:
|
|||
void UnregisterServer(JsonRpcServer::Ptr server);
|
||||
|
||||
int NewClientHandler(const NewClientEventArgs& ncea);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif /* ENDPOINTMANAGER_H */
|
||||
|
|
Loading…
Reference in New Issue