Warning, file /pim/kitinerary/src/lib/locationutil_p.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     SPDX-FileCopyrightText: 2017-2022 Volker Krause <vkrause@kde.org>
0003     SPDX-License-Identifier: LGPL-2.0-or-later
0004 */
0005 
0006 #ifndef KITINERARY_LOCATIONUTIL_P_H
0007 #define KITINERARY_LOCATIONUTIL_P_H
0008 
0009 namespace KContacts {
0010 class Address;
0011 }
0012 
0013 namespace KItinerary {
0014 
0015 class PostalAddress;
0016 
0017 namespace LocationUtil {
0018 /** Convert a schema.org address object into a KContacts one. */
0019 KContacts::Address toAddress(const PostalAddress &addr);
0020 }
0021 
0022 }
0023 
0024 #endif