chore: BaseClientProxy use default for deconstructor
This commit is contained in:
@ -16,11 +16,6 @@ BaseClientProxy::BaseClientProxy(const std::string &name) : m_name(name), m_x(0)
|
|||||||
// do nothing
|
// do nothing
|
||||||
}
|
}
|
||||||
|
|
||||||
BaseClientProxy::~BaseClientProxy()
|
|
||||||
{
|
|
||||||
// do nothing
|
|
||||||
}
|
|
||||||
|
|
||||||
void BaseClientProxy::setJumpCursorPos(int32_t x, int32_t y)
|
void BaseClientProxy::setJumpCursorPos(int32_t x, int32_t y)
|
||||||
{
|
{
|
||||||
m_x = x;
|
m_x = x;
|
||||||
|
|||||||
@ -21,7 +21,7 @@ public:
|
|||||||
\c name is the name of the client.
|
\c name is the name of the client.
|
||||||
*/
|
*/
|
||||||
BaseClientProxy(const std::string &name);
|
BaseClientProxy(const std::string &name);
|
||||||
~BaseClientProxy() override;
|
~BaseClientProxy() override = default;
|
||||||
|
|
||||||
//! @name manipulators
|
//! @name manipulators
|
||||||
//@{
|
//@{
|
||||||
|
|||||||
Reference in New Issue
Block a user