summaryrefslogtreecommitdiff
path: root/AK/NonnullOwnPtrVector.h
blob: d00644225cff924bd3b7e6670e79b333f623501c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <AK/NonnullPtrVector.h>
#include <AK/NonnullOwnPtr.h>

namespace AK {

template<typename T, int inline_capacity = 0>
class NonnullOwnPtrVector : public NonnullPtrVector<NonnullOwnPtr<T>, inline_capacity>
{
};

}

using AK::NonnullOwnPtrVector;