adds opengametimeoutmsgbox (non functional)
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user