2024-11-14 15:01:23 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2024, Shannon Booth <shannon@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2024-11-16 21:25:26 +00:00
|
|
|
#include <AK/Types.h>
|
|
|
|
|
2024-11-14 15:01:23 +00:00
|
|
|
namespace GC {
|
|
|
|
|
|
|
|
class Cell;
|
|
|
|
class CellAllocator;
|
|
|
|
class DeferGC;
|
2024-11-16 21:56:27 +00:00
|
|
|
class ForeignCell;
|
2024-11-14 15:01:23 +00:00
|
|
|
class RootImpl;
|
|
|
|
class Heap;
|
|
|
|
class HeapBlock;
|
|
|
|
class NanBoxedValue;
|
|
|
|
class WeakContainer;
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
class Function;
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
class Root;
|
|
|
|
|
|
|
|
template<class T, size_t inline_capacity = 0>
|
|
|
|
class ConservativeVector;
|
|
|
|
|
|
|
|
template<class T, size_t inline_capacity = 0>
|
|
|
|
class MarkedVector;
|
|
|
|
|
|
|
|
}
|