mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-04 21:04:59 +08:00
chore: XDeskflow, use default for deconstructors
This commit is contained in:
parent
ace5b54912
commit
ca0d095283
@ -66,9 +66,7 @@ class XDuplicateClient : public XDeskflow
|
||||
{
|
||||
public:
|
||||
XDuplicateClient(const std::string &name);
|
||||
~XDuplicateClient() throw() override
|
||||
{
|
||||
}
|
||||
~XDuplicateClient() throw() override = default;
|
||||
|
||||
//! @name accessors
|
||||
//@{
|
||||
@ -94,9 +92,7 @@ class XUnknownClient : public XDeskflow
|
||||
{
|
||||
public:
|
||||
XUnknownClient(const std::string &name);
|
||||
~XUnknownClient() throw() override
|
||||
{
|
||||
}
|
||||
~XUnknownClient() throw() override = default;
|
||||
|
||||
//! @name accessors
|
||||
//@{
|
||||
@ -123,9 +119,7 @@ class XExitApp : public XDeskflow
|
||||
{
|
||||
public:
|
||||
XExitApp(int code);
|
||||
~XExitApp() throw() override
|
||||
{
|
||||
}
|
||||
~XExitApp() throw() override = default;
|
||||
|
||||
//! Get the exit code
|
||||
int getCode() const throw();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user