adds opengametimeoutmsgbox (non functional)

This commit is contained in:
doitux
2008-03-01 21:31:50 +00:00
parent c4833db8be
commit 1ba22682ee
2 changed files with 53 additions and 0 deletions
@@ -0,0 +1,24 @@
//
// C++ Implementation: opengametimeoutmsgboximpl
//
// Description:
//
//
// Author: Felix Hammer <f.hammer@web.de>, (C) 2008
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "opengametimeoutmsgboximpl.h"
openGameTimeoutMsgBoxImpl::openGameTimeoutMsgBoxImpl()
: QMessageBox()
{
}
openGameTimeoutMsgBoxImpl::~openGameTimeoutMsgBoxImpl()
{
}
@@ -0,0 +1,29 @@
//
// C++ Interface: opengametimeoutmsgboximpl
//
// Description:
//
//
// Author: Felix Hammer <f.hammer@web.de>, (C) 2008
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef OPENGAMETIMEOUTMSGBOXIMPL_H
#define OPENGAMETIMEOUTMSGBOXIMPL_H
#include <QMessageBox>
/**
@author Felix Hammer <f.hammer@web.de>
*/
class openGameTimeoutMsgBoxImpl : public QMessageBox
{
public:
openGameTimeoutMsgBoxImpl();
~openGameTimeoutMsgBoxImpl();
};
#endif