aboutsummaryrefslogtreecommitdiff
path: root/backend/PtrList.h
blob: 5442043c108dbeb120f30f7509b464cd38a4fa0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "List.h"

template<typename T>
class PtrList : public List<T *> {
public:
	using List<T *>::List;
	virtual ~PtrList();
};

#include "PtrList.hpp"