
This remained undetected for a long time as HeaderCheck is disabled by default. This commit makes the following file compile again: // file: compile_me.cpp #include <LibDNS/Question.h> // That's it, this was enough to cause a compilation error. Likewise for most other files touched by this commit.
41 lines
745 B
C++
41 lines
745 B
C++
/*
|
|
* Copyright (c) 2022, Ali Mohammad Pur <mpfard@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/HashMap.h>
|
|
#include <AK/NonnullOwnPtrVector.h>
|
|
#include <AK/String.h>
|
|
#include <AK/Variant.h>
|
|
#include <AK/Vector.h>
|
|
#include <LibXML/FundamentalTypes.h>
|
|
|
|
namespace XML {
|
|
|
|
struct Attribute {
|
|
Name name;
|
|
String value;
|
|
};
|
|
|
|
struct Node {
|
|
struct Text {
|
|
StringBuilder builder;
|
|
};
|
|
struct Comment {
|
|
String text;
|
|
};
|
|
struct Element {
|
|
Name name;
|
|
HashMap<Name, String> attributes;
|
|
NonnullOwnPtrVector<Node> children;
|
|
};
|
|
|
|
bool operator==(Node const&) const;
|
|
|
|
Variant<Text, Comment, Element> content;
|
|
Node* parent { nullptr };
|
|
};
|
|
}
|