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:
@@ -41,17 +41,12 @@ class PriorityEvent: public AbstractEvent <
|
||||
/// an arbitrary manner.
|
||||
{
|
||||
public:
|
||||
PriorityEvent()
|
||||
{
|
||||
}
|
||||
PriorityEvent() = default;
|
||||
|
||||
~PriorityEvent()
|
||||
{
|
||||
}
|
||||
~PriorityEvent() = default;
|
||||
|
||||
private:
|
||||
PriorityEvent(const PriorityEvent&);
|
||||
PriorityEvent& operator = (const PriorityEvent&);
|
||||
PriorityEvent(const PriorityEvent&) = delete;
|
||||
PriorityEvent& operator=(const PriorityEvent&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user