summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/snippets/code/doc_src_qalgorithms.cpp
blob: f2b94a741651701eb72b8b4e7dd5c945d89def59 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [1]
QList<Employee *> list;
list.append(new Employee("Blackpool", "Stephen"));
list.append(new Employee("Twist", "Oliver"));

qDeleteAll(list.begin(), list.end());
list.clear();
//! [1]