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 <QVector>
13 
14 namespace KContacts
15 {
16 class Addressee;
17 
18 /**
19  * @short  a QVector of Addressee.
20  */
21 typedef QVector<Addressee> AddresseeList;
22 
23 }
24 
25 #endif
26