Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / workspace / libs / ksysguard / processcore / processes_local_p.cpp
blob5ab9fb5793b7586fc440bc674f03f5b15bbd9e6b
1 /* This file is part of the KDE project
3 Copyright (C) 2007 John Tapsell <tapsell@kde.org>
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
22 #if defined __linux__
23 #include "processes_linux_p.cpp"
24 #elif defined __FreeBSD__ || defined __DragonFly__
25 #include "processes_freebsd_p.cpp"
26 #elif defined __OpenBSD__
27 #include "processes_openbsd_p.cpp"
28 #elif defined __NetBSD__
29 #include "processes_netbsd_p.cpp"
30 #else
31 // Use Qt's OS detection
32 #include <qglobal.h>
33 #ifdef Q_OS_SOLARIS
34 #include "processes_solaris_p.cpp"
35 #endif
36 #endif