File indexing completed on 2024-06-23 05:14:17

0001 /*
0002     kuniqueservice.cpp
0003 
0004     This file is part of Kleopatra, the KDE keymanager
0005     SPDX-FileCopyrightText: 2016 Bundesamt für Sicherheit in der Informationstechnik
0006     SPDX-FileContributor: Intevation GmbH
0007 
0008     SPDX-License-Identifier: GPL-2.0-or-later
0009 */
0010 #include <config-kleopatra.h>
0011 
0012 // Includes the real implementation
0013 
0014 #if !HAVE_QDBUS && defined(_WIN32)
0015 #include "kuniqueservice_win.cpp"
0016 #elif HAVE_QDBUS
0017 #include "kuniqueservice_dbus.cpp"
0018 #else
0019 #error "Uniqueservice is only implemented for DBus and Windows."
0020 #endif
0021 
0022 #include "moc_kuniqueservice.cpp"