• Main Page
  • Related Pages
  • Namespaces
  • Classes
  • Files
  • File List
  • File Members

sconnect.h

Go to the documentation of this file.
00001 /*
00002  * Copyright (C) 2008, 2009 Nokia Corporation.
00003  *
00004  * Contact: Marius Vollmer <marius.vollmer@nokia.com>
00005  *
00006  * This program is free software; you can redistribute it and/or
00007  * modify it under the terms of the GNU Lesser General Public License
00008  * version 2.1 as published by the Free Software Foundation.
00009  *
00010  * This program is distributed in the hope that it will be useful, but
00011  * WITHOUT ANY WARRANTY; without even the implied warranty of
00012  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
00013  * Lesser General Public License for more details.
00014  *
00015  * You should have received a copy of the GNU Lesser General Public
00016  * License along with this program; if not, write to the Free Software
00017  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
00018  * 02110-1301 USA
00019  *
00020  */
00021 
00022 #ifndef SCONNECT_H
00023 #define SCONNECT_H
00024 
00025 #include <QObject>
00026 #include <QDebug>
00027 
00028 inline void sconnect(const QObject *from, const char* fromSignal,
00029                      const QObject *to, const char* toSignal, Qt::ConnectionType type = Qt::AutoConnection)
00030 {
00031     if (!QObject::connect(from, fromSignal, to, toSignal, type))
00032         qFatal("    *****************\n"
00033                "Connect returned false, aborting, enable core dumping (ulimit -c unlimited), \n"
00034                "enable debug (qmake CONFIG+=debug), recompile, rerun and then use the\n"
00035                "core file with gdb's backtrace to see the location.\n"
00036                "    *****************\n");
00037 }
00038 
00039 #endif

Generated on Sun Jun 1 2014 17:31:06 for libcontextprovider by  doxygen 1.7.1