1 | /* |
---|---|
2 | This file is part of the KContacts framework. |
3 | SPDX-FileCopyrightText: 2002 Jost Schenck <jost@schenck.de> |
4 | SPDX-FileCopyrightText: 2003 Tobias Koenig <tokoe@kde.org> |
5 | |
6 | SPDX-License-Identifier: LGPL-2.0-or-later |
7 | */ |
8 | |
9 | #ifndef KCONTACTS_ADDRESSEELIST_H |
10 | #define KCONTACTS_ADDRESSEELIST_H |
11 | |
12 | #include <QList> |
13 | |
14 | namespace KContacts |
15 | { |
16 | class Addressee; |
17 | |
18 | /** |
19 | * @short a QList of Addressee. |
20 | */ |
21 | typedef QList<Addressee> AddresseeList; |
22 | } |
23 | |
24 | #endif |
25 |