
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
21 lines
431 B
C++
21 lines
431 B
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Layout/FormattingContext.h>
|
|
|
|
namespace Web::Layout {
|
|
|
|
class FlexFormattingContext final : public FormattingContext {
|
|
public:
|
|
FlexFormattingContext(Box& containing_block, FormattingContext* parent);
|
|
~FlexFormattingContext();
|
|
|
|
virtual void run(Box&, LayoutMode) override;
|
|
};
|
|
|
|
}
|