How do I check in C++, if delegate has been broadcasted?

I have declared Dynamic Multi Cast delegate in one class, and in the same class I broadcast it.

Now in another class I have pointer, to the object of class with Delegate. How do I check in this class that delegate has been broadcasted ?

I believe the only way to do this is to subscribe to your delegate. You can use the Add() function to do this. There’s an example in my LEAP sensor integration plugin - take a look at this file for an example in the OnRegister() function.