serenity/AK/NonnullOwnPtrVector.h

23 lines
412 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/NonnullOwnPtr.h>
2020-09-18 07:49:51 +00:00
#include <AK/NonnullPtrVector.h>
namespace AK {
template<typename T, size_t inline_capacity>
2020-09-18 07:49:51 +00:00
class NonnullOwnPtrVector : public NonnullPtrVector<NonnullOwnPtr<T>, inline_capacity> {
};
}
#if USING_AK_GLOBALLY
using AK::NonnullOwnPtrVector;
#endif