mirror of
https://github.com/RGBCube/serenity
synced 2025-05-24 18:25:07 +00:00
9 lines
163 B
C++
9 lines
163 B
C++
#pragma once
|
|
|
|
class Node;
|
|
class LayoutNode;
|
|
class StyleSheet;
|
|
|
|
void dump_tree(const Node&);
|
|
void dump_tree(const LayoutNode&);
|
|
void dump_sheet(const StyleSheet&);
|