mirror of
https://github.com/pocoproject/poco.git
synced 2025-12-18 11:56:11 +01:00
enh(Foundation): modernised header files (override, using, nullptr, ...)
This commit is contained in:
@@ -41,18 +41,14 @@ public:
|
||||
using Iterator = typename Delegates::iterator;
|
||||
|
||||
public:
|
||||
DefaultStrategy()
|
||||
{
|
||||
}
|
||||
DefaultStrategy() = default;
|
||||
|
||||
DefaultStrategy(const DefaultStrategy& s):
|
||||
_delegates(s._delegates)
|
||||
{
|
||||
}
|
||||
|
||||
~DefaultStrategy()
|
||||
{
|
||||
}
|
||||
~DefaultStrategy() = default;
|
||||
|
||||
void notify(const void* sender, TArgs& arguments)
|
||||
{
|
||||
@@ -138,9 +134,7 @@ public:
|
||||
using Iterator = typename Delegates::iterator;
|
||||
|
||||
public:
|
||||
DefaultStrategy()
|
||||
{
|
||||
}
|
||||
DefaultStrategy() = default;
|
||||
|
||||
DefaultStrategy(const DefaultStrategy& s):
|
||||
_delegates(s._delegates)
|
||||
@@ -152,9 +146,7 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
~DefaultStrategy()
|
||||
{
|
||||
}
|
||||
~DefaultStrategy() = default;
|
||||
|
||||
void notify(const void* sender)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user