mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03:00
56cbe15033
Also add a Tool base class, and an empty BucketTool subclass which is the next thing to implement.
10 lines
55 B
C++
10 lines
55 B
C++
#include "Tool.h"
|
|
|
|
Tool::Tool()
|
|
{
|
|
}
|
|
|
|
Tool::~Tool()
|
|
{
|
|
}
|