mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 19:04:58 +00:00
Building a whole layout tree shouldn't be a concern of Node, so this patch moves it to a separate class.
14 lines
169 B
C++
14 lines
169 B
C++
#pragma once
|
|
|
|
#include <AK/RefPtr.h>
|
|
|
|
class Node;
|
|
class LayoutNode;
|
|
|
|
class LayoutTreeBuilder {
|
|
public:
|
|
LayoutTreeBuilder();
|
|
|
|
RefPtr<LayoutNode> build(Node&);
|
|
};
|