File indexing completed on 2024-05-12 05:13:29

0001 /*
0002    SPDX-FileCopyrightText: 2013-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 #include "contacteditorutil.h"
0007 
0008 ContactEditorUtil::ContactEditorUtil() = default;
0009 
0010 QString ContactEditorUtil::defaultContact() const
0011 {
0012     const QString contact = QStringLiteral(
0013         "BEGIN:VCARD\n"
0014         "ADR;TYPE=home:;;10 street Eiffel Tower\n;Paris;;75016;France\n"
0015         "EMAIL:test@kde.org\n"
0016         "FN:Test\n"
0017         "N:Test;;;;\n"
0018         "ORG:kde\n"
0019         "TEL;TYPE=HOME:+33 12345678\n"
0020         "UID:{851e0b81-8f95-40d2-a6a6-a9dbee2be12d}\n"
0021         "URL:www.kde.org\n"
0022         "VERSION:3.0\n"
0023         "END:VCARD");
0024     return contact;
0025 }