/* * Copyright (c) 2020, Andreas Kling * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #pragma once #include namespace AK { class Bitmap; class ByteBuffer; class DebugLogStream; class IPv4Address; class JsonArray; class JsonObject; class JsonValue; class LogStream; class StackInfo; class String; class StringBuilder; class StringImpl; class StringView; class URL; class FlyString; class Utf32View; class Utf8View; class InputStream; class InputMemoryStream; class DuplexMemoryStream; class OutputStream; class InputBitStream; class OutputMemoryStream; template class CircularDuplexStream; template class Span; template struct Array; template class SimpleIterator; using ReadonlyBytes = Span; using Bytes = Span; template class Atomic; template class SinglyLinkedList; template class DoublyLinkedList; template class InlineLinkedList; template class CircularQueue; template struct Traits; template> class HashTable; template> class HashMap; template class Badge; template class Function; template class Function; template class NonnullRefPtr; template class NonnullOwnPtr; template class NonnullRefPtrVector; template class NonnullOwnPtrVector; template class Optional; template struct RefPtrTraits; template> class RefPtr; template class OwnPtr; template class WeakPtr; template class Vector; } using AK::Array; using AK::Atomic; using AK::Badge; using AK::Bitmap; using AK::ByteBuffer; using AK::Bytes; using AK::CircularDuplexStream; using AK::CircularQueue; using AK::DebugLogStream; using AK::DoublyLinkedList; using AK::DuplexMemoryStream; using AK::FlyString; using AK::Function; using AK::HashMap; using AK::HashTable; using AK::InlineLinkedList; using AK::InputBitStream; using AK::InputMemoryStream; using AK::InputStream; using AK::IPv4Address; using AK::JsonArray; using AK::JsonObject; using AK::JsonValue; using AK::LogStream; using AK::NonnullOwnPtr; using AK::NonnullOwnPtrVector; using AK::NonnullRefPtr; using AK::NonnullRefPtrVector; using AK::Optional; using AK::OutputMemoryStream; using AK::OutputStream; using AK::OwnPtr; using AK::ReadonlyBytes; using AK::RefPtr; using AK::SinglyLinkedList; using AK::Span; using AK::StackInfo; using AK::String; using AK::StringBuilder; using AK::StringImpl; using AK::StringView; using AK::Traits; using AK::URL; using AK::Utf32View; using AK::Utf8View; using AK::Vector;