serenity/AK/NonnullRefPtrVector.h

24 lines
493 B
C
Raw Normal View History

/*
* 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>
2020-09-18 07:49:51 +00:00
class NonnullRefPtrVector : public NonnullPtrVector<NonnullRefPtr<T>, inline_capacity> {
using NonnullPtrVector<NonnullRefPtr<T>, inline_capacity>::NonnullPtrVector;
};
}
#if USING_AK_GLOBALLY
using AK::NonnullRefPtrVector;
#endif