mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 02:54:54 +03:00
22 lines
464 B
C++
22 lines
464 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/NonnullPtrVector.h>
|
|
#include <AK/NonnullRefPtr.h>
|
|
|
|
namespace AK {
|
|
|
|
template<typename T, size_t inline_capacity>
|
|
class NonnullRefPtrVector : public NonnullPtrVector<NonnullRefPtr<T>, inline_capacity> {
|
|
using NonnullPtrVector<NonnullRefPtr<T>, inline_capacity>::NonnullPtrVector;
|
|
};
|
|
|
|
}
|
|
|
|
using AK::NonnullRefPtrVector;
|