Warning, file /pim/zanshin/src/integration/dependencies.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: 2014 Kevin Ottens <ervin@kde.org> 0003 * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 0004 */ 0005 0006 0007 #ifndef INTEGRATION_DEPENDENCIES_H 0008 #define INTEGRATION_DEPENDENCIES_H 0009 0010 namespace Utils 0011 { 0012 class DependencyManager; 0013 } 0014 0015 namespace Integration 0016 { 0017 void initializeGlobalAppDependencies(); 0018 0019 void initializeDefaultAkonadiDependencies(Utils::DependencyManager &deps); 0020 void initializeDefaultDomainDependencies(Utils::DependencyManager &deps); 0021 void initializeDefaultPresentationDependencies(Utils::DependencyManager &deps); 0022 } 0023 0024 #endif 0025