File indexing completed on 2024-11-24 04:39:27
0001 /* 0002 SPDX-FileCopyrightText: 2008 Tobias Koenig <tokoe@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include "akonadi-contact-core_export.h" 0010 0011 namespace Akonadi 0012 { 0013 /** 0014 * @short Contains predefined part identifiers. 0015 * 0016 * This namespace contains identifiers of item parts that are used for 0017 * handling contact items. 0018 */ 0019 namespace ContactPart 0020 { 0021 /** 0022 * The part identifier for a small contact version, 0023 * that contains only name and email addresses. 0024 * @since 4.2 0025 */ 0026 AKONADI_CONTACT_CORE_EXPORT extern const char Lookup[]; 0027 0028 /** 0029 * The part identifier for all the contact data except 0030 * images and sounds. 0031 * 0032 * @note Use Akonadi::Item::FullPayload to retrieve the 0033 * full contact including images and sounds. 0034 * @since 4.2 0035 */ 0036 AKONADI_CONTACT_CORE_EXPORT extern const char Standard[]; 0037 } 0038 }