libkdegames/kggzgames
kggzrankingsdialog.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef KGGZGAMES_RANKINGSDIALOG_H
00022 #define KGGZGAMES_RANKINGSDIALOG_H
00023
00024 #include <kggzmod/event.h>
00025
00026 #include <QtGui/QWidget>
00027
00028 #include "kggzgames_export.h"
00029
00030 class KGGZRankingsDialogPrivate;
00031
00047 class KGGZGAMES_EXPORT KGGZRankingsDialog : public QObject
00048 {
00049 Q_OBJECT
00050 public:
00059 KGGZRankingsDialog(QWidget *parent = NULL);
00060
00064 ~KGGZRankingsDialog();
00065
00066 private:
00067 friend class KGGZRankingsDialogPrivate;
00068 KGGZRankingsDialogPrivate* const d;
00069 Q_DISABLE_COPY(KGGZRankingsDialog)
00070
00071 Q_PRIVATE_SLOT(d, void slotRankings(const KGGZMod::Event& event))
00072 };
00073
00074 #endif
00075