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 | * \typedef KContacts::AddresseeList |
20 | * A QList of Addressee. |
21 | */ |
22 | typedef QList<Addressee> AddresseeList; |
23 | } |
24 | |
25 | #endif |
26 | |