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:
@@ -40,17 +40,12 @@ class BasicEvent: public AbstractEvent <
|
||||
/// for more information.
|
||||
{
|
||||
public:
|
||||
BasicEvent()
|
||||
{
|
||||
}
|
||||
BasicEvent() = default;
|
||||
|
||||
~BasicEvent()
|
||||
{
|
||||
}
|
||||
~BasicEvent() = default;
|
||||
|
||||
private:
|
||||
BasicEvent(const BasicEvent& e);
|
||||
BasicEvent& operator = (const BasicEvent& e);
|
||||
BasicEvent(const BasicEvent& e) = delete;
|
||||
BasicEvent& operator=(const BasicEvent& e) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user