Describes extended feedback listener.
You can find more information in comments below.
class IFeedbackExListener
{
public:
virtual void NotifyOnBeforeChange() = 0; // Notification is called right before a change
virtual void NotifyOnBeforeChange(bool &allowed) = 0; // Notification is called right before a change. "allowed" can be set to false to prevent the change
virtual void NotifyOnAfterChange() = 0; // Notification is called right after a change
};
Namespace: | nitisa |
Include: | Nitisa/Interfaces/IFeedbackExListener.h |