File indexing completed on 2024-12-08 12:16:57
0001 /* 0002 This file is part of the KContacts framework. 0003 SPDX-FileCopyrightText: 2002 Jost Schenck <jost@schenck.de> 0004 SPDX-FileCopyrightText: 2003 Tobias Koenig <tokoe@kde.org> 0005 0006 SPDX-License-Identifier: LGPL-2.0-or-later 0007 */ 0008 0009 #ifndef KCONTACTS_ADDRESSEELIST_H 0010 #define KCONTACTS_ADDRESSEELIST_H 0011 0012 #include <QVector> 0013 0014 namespace KContacts 0015 { 0016 class Addressee; 0017 0018 /** 0019 * @short a QVector of Addressee. 0020 */ 0021 typedef QVector<Addressee> AddresseeList; 0022 0023 } 0024 0025 #endif