1 /*
2  * SPDX-FileCopyrightText: 2014 Kevin Ottens <ervin@kde.org>
3  * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
4  */
5 
6 
7 #ifndef INTEGRATION_DEPENDENCIES_H
8 #define INTEGRATION_DEPENDENCIES_H
9 
10 namespace Utils
11 {
12     class DependencyManager;
13 }
14 
15 namespace Integration
16 {
17     void initializeGlobalAppDependencies();
18 
19     void initializeDefaultAkonadiDependencies(Utils::DependencyManager &deps);
20     void initializeDefaultDomainDependencies(Utils::DependencyManager &deps);
21     void initializeDefaultPresentationDependencies(Utils::DependencyManager &deps);
22 }
23 
24 #endif
25 
26