2024-11-15 04:01:23 +13:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2024, Shannon Booth <shannon@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2024-11-16 14:25:26 -07:00
|
|
|
#include <AK/Types.h>
|
2025-06-28 01:34:31 -07:00
|
|
|
#include <LibGC/Export.h>
|
2024-11-16 14:25:26 -07:00
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
namespace GC {
|
|
|
|
|
|
|
|
class Cell;
|
|
|
|
class CellAllocator;
|
|
|
|
class DeferGC;
|
2024-11-16 14:56:27 -07:00
|
|
|
class ForeignCell;
|
2024-11-15 04:01:23 +13: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>
|
2024-12-26 14:32:52 +01:00
|
|
|
class RootVector;
|
2024-11-15 04:01:23 +13:00
|
|
|
|
|
|
|
}
|