00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00028 #ifndef SIGNONPLUGIN_H
00029 #define SIGNONPLUGIN_H
00030
00031 #include <QtCore/qobject.h>
00032 #include <QtCore/qpointer.h>
00033 #include <QtCore/qplugin.h>
00034
00035 #include <QVariantMap>
00036 #include "SignOn/sessiondata.h"
00037 #include "SignOn/uisessiondata.h"
00038
00039 #ifdef SIGNON_PLUGIN_TRACE
00040 #include <QDebug>
00041
00042 #ifdef DEBUG_ENABLED
00043 #ifdef TRACE
00044 #undef TRACE
00045 #endif
00046
00047 #ifdef BLAME
00048 #undef BLAME
00049 #endif
00050
00051 #define TRACE() qDebug() << __FILE__ << __LINE__ << __func__
00052 #define BLAME() qCritical() << __FILE__ << __LINE__ << __func__
00053 #else
00054 #define TRACE() while (0) qDebug()
00055 #define BLAME() while (0) qCritical()
00056 #endif
00057 #endif
00058
00059 #endif // SIGNONPLUGIN_H