add new method to fully implement handler
Some checks failed
ContinuousDelivery / windows (push) Has been cancelled
ContinuousIntegration / windows (push) Has been cancelled
ContinuousDelivery / release (push) Has been cancelled

This commit is contained in:
Green Sky 2025-03-10 23:12:34 +01:00
parent 15c0aca1f6
commit 3a51c0077b
No known key found for this signature in database
GPG Key ID: DBE05085D874AB4A

View File

@ -24,6 +24,10 @@ class OurHandler : public WinToastLib::IWinToastHandler {
std::cout << "action called\n";
}
void toastActivated(const char* response) const override {
std::cout << "action called\n";
}
void toastDismissed(WinToastDismissalReason state) const override {
}