File indexing completed on 2024-04-14 03:51:28

0001 /*
0002     This file is part of the KContacts framework.
0003     SPDX-FileCopyrightText: 2007 KDE-PIM team <kde-pim@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef TESTUTILS_H
0009 #define TESTUTILS_H
0010 
0011 #include <QByteArray>
0012 #include <QString>
0013 
0014 #include <kcontacts/addressee.h>
0015 
0016 KContacts::Addressee vcard1();
0017 KContacts::Addressee vcard2();
0018 KContacts::Addressee vcard3();
0019 KContacts::Addressee::List vCardsAsAddresseeList();
0020 QByteArray vCardsAsText();
0021 
0022 #endif