Update document WIP.

This commit is contained in:
ArthurSonzogni
2020-05-25 01:34:13 +02:00
committed by Arthur Sonzogni
parent 177df31d41
commit 75c424cea9
55 changed files with 3244 additions and 152 deletions

View File

@@ -43,6 +43,10 @@ class DBox : public Node {
}
};
/// @brief Stack several element on top of each other.
/// @param The input element.
/// @return The right aligned element.
/// @ingroup dom
Element dbox(Elements children) {
return std::make_shared<DBox>(std::move(children));
}