From 1ba22682ee432248104bc0d0662892e86bef7a97 Mon Sep 17 00:00:00 2001 From: doitux Date: Sat, 1 Mar 2008 21:31:50 +0000 Subject: [PATCH] adds opengametimeoutmsgbox (non functional) --- .../opengametimeoutmsgboximpl.cpp | 24 +++++++++++++++ .../opengametimeoutmsgboximpl.h | 29 +++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 src/gui/qt/gamelobbydialog/opengametimeoutmsgbox/opengametimeoutmsgboximpl.cpp create mode 100644 src/gui/qt/gamelobbydialog/opengametimeoutmsgbox/opengametimeoutmsgboximpl.h diff --git a/src/gui/qt/gamelobbydialog/opengametimeoutmsgbox/opengametimeoutmsgboximpl.cpp b/src/gui/qt/gamelobbydialog/opengametimeoutmsgbox/opengametimeoutmsgboximpl.cpp new file mode 100644 index 00000000..9afa6996 --- /dev/null +++ b/src/gui/qt/gamelobbydialog/opengametimeoutmsgbox/opengametimeoutmsgboximpl.cpp @@ -0,0 +1,24 @@ +// +// C++ Implementation: opengametimeoutmsgboximpl +// +// Description: +// +// +// Author: Felix Hammer , (C) 2008 +// +// Copyright: See COPYING file that comes with this distribution +// +// +#include "opengametimeoutmsgboximpl.h" + +openGameTimeoutMsgBoxImpl::openGameTimeoutMsgBoxImpl() + : QMessageBox() +{ +} + + +openGameTimeoutMsgBoxImpl::~openGameTimeoutMsgBoxImpl() +{ +} + + diff --git a/src/gui/qt/gamelobbydialog/opengametimeoutmsgbox/opengametimeoutmsgboximpl.h b/src/gui/qt/gamelobbydialog/opengametimeoutmsgbox/opengametimeoutmsgboximpl.h new file mode 100644 index 00000000..284c862e --- /dev/null +++ b/src/gui/qt/gamelobbydialog/opengametimeoutmsgbox/opengametimeoutmsgboximpl.h @@ -0,0 +1,29 @@ +// +// C++ Interface: opengametimeoutmsgboximpl +// +// Description: +// +// +// Author: Felix Hammer , (C) 2008 +// +// Copyright: See COPYING file that comes with this distribution +// +// +#ifndef OPENGAMETIMEOUTMSGBOXIMPL_H +#define OPENGAMETIMEOUTMSGBOXIMPL_H + +#include + +/** + @author Felix Hammer +*/ +class openGameTimeoutMsgBoxImpl : public QMessageBox +{ +public: + openGameTimeoutMsgBoxImpl(); + + ~openGameTimeoutMsgBoxImpl(); + +}; + +#endif