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