File indexing completed on 2024-05-19 16:38:20

0001 /*
0002     SPDX-FileCopyrightText: 2015, 2016 Ivan Cukic <ivan.cukic(at)kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #ifndef ACTIVITIES_SYNC_P_H
0008 #define ACTIVITIES_SYNC_P_H
0009 
0010 #include <memory>
0011 #include <mutex>
0012 
0013 #include <KActivities/Consumer>
0014 
0015 namespace ActivitiesSync
0016 {
0017 typedef std::shared_ptr<KActivities::Consumer> ConsumerPtr;
0018 
0019 QString currentActivity(ConsumerPtr &activities);
0020 
0021 } // namespace ActivitiesSync
0022 
0023 #endif // ACTIVITIES_SYNC_P_H