mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 02:03:06 -05:00
56cbe15033
Also add a Tool base class, and an empty BucketTool subclass which is the next thing to implement.
9 lines
55 B
C++
9 lines
55 B
C++
#include "Tool.h"
|
|
|
|
Tool::Tool()
|
|
{
|
|
}
|
|
|
|
Tool::~Tool()
|
|
{
|
|
}
|