Tidying
This commit is contained in:
@@ -15,8 +15,15 @@ namespace Bloom
|
||||
class DebugTool
|
||||
{
|
||||
public:
|
||||
DebugTool() = default;
|
||||
virtual ~DebugTool() = default;
|
||||
|
||||
DebugTool(const DebugTool& other) = default;
|
||||
DebugTool(DebugTool&& other) = default;
|
||||
|
||||
DebugTool& operator = (const DebugTool& other) = default;
|
||||
DebugTool& operator = (DebugTool&& other) = default;
|
||||
|
||||
/**
|
||||
* Should establish a connection to the device and prepare it for a debug session.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user