2019-06-15 17:49:44 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
2019-06-15 18:41:15 -03:00
|
|
|
#include <LibHTML/Layout/LayoutNode.h>
|
2019-06-15 17:49:44 -03:00
|
|
|
|
|
|
|
|
class Element;
|
|
|
|
|
|
|
|
|
|
class LayoutInline : public LayoutNode {
|
|
|
|
|
public:
|
2019-07-03 02:19:29 -03:00
|
|
|
LayoutInline(const Node&, const StyledNode&);
|
2019-06-15 17:49:44 -03:00
|
|
|
virtual ~LayoutInline() override;
|
|
|
|
|
|
|
|
|
|
virtual const char* class_name() const override { return "LayoutInline"; }
|
2019-07-08 12:42:23 -03:00
|
|
|
virtual bool is_inline() const override { return true; }
|
2019-06-15 17:49:44 -03:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
};
|