mirror of
https://github.com/pocoproject/poco.git
synced 2025-12-10 18:14:58 +01:00
enh(Foundation): modernised header files (override, using, nullptr, ...)
This commit is contained in:
@@ -35,13 +35,9 @@ class NotificationStrategy
|
||||
public:
|
||||
using DelegateHandle = TDelegate*;
|
||||
|
||||
NotificationStrategy()
|
||||
{
|
||||
}
|
||||
NotificationStrategy() = default;
|
||||
|
||||
virtual ~NotificationStrategy()
|
||||
{
|
||||
}
|
||||
virtual ~NotificationStrategy() = default;
|
||||
|
||||
virtual void notify(const void* sender, TArgs& arguments) = 0;
|
||||
/// Sends a notification to all registered delegates.
|
||||
@@ -76,13 +72,9 @@ class NotificationStrategy<void, TDelegate>
|
||||
public:
|
||||
using DelegateHandle = TDelegate*;
|
||||
|
||||
NotificationStrategy()
|
||||
{
|
||||
}
|
||||
NotificationStrategy() = default;
|
||||
|
||||
virtual ~NotificationStrategy()
|
||||
{
|
||||
}
|
||||
virtual ~NotificationStrategy() = default;
|
||||
|
||||
virtual void notify(const void* sender) = 0;
|
||||
/// Sends a notification to all registered delegates.
|
||||
|
||||
Reference in New Issue
Block a user