Removed backup files
[krunner.git] / restartingapplication.h
blobf8443e94d1ff0749bed84c21551723266db36ea7
1 /*
2 * Copyright (C) 2006 Aaron Seigo <aseigo@kde.org>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Library General Public License version 2 as
6 * published by the Free Software Foundation
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details
13 * You should have received a copy of the GNU Library General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 #ifndef RESTARTINGAPPLICATION_H
20 #define RESTARTINGAPPLICATION_H
22 #include <Qt>
23 #include <KUniqueApplication>
25 class RestartingApplication : public KUniqueApplication
27 Q_OBJECT
29 public:
30 RestartingApplication(Display *display,
31 Qt::HANDLE visual = 0,
32 Qt::HANDLE colormap = 0);
33 RestartingApplication() : KUniqueApplication() {}
34 private slots:
35 void setCrashHandler();
37 private:
38 static void crashHandler(int signal);
41 #endif