This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
//
|
||||
// C++ Implementation: startsplash
|
||||
//
|
||||
// Description:
|
||||
//
|
||||
//
|
||||
// Author: FThauer FHammer <f.thauer@web.de>, (C) 2007
|
||||
//
|
||||
// Copyright: See COPYING file that comes with this distribution
|
||||
//
|
||||
//
|
||||
#include "startsplash.h"
|
||||
|
||||
StartSplash::StartSplash()
|
||||
: QWidget()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
StartSplash::~StartSplash()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
//
|
||||
// C++ Interface: startsplash
|
||||
//
|
||||
// Description:
|
||||
//
|
||||
//
|
||||
// Author: FThauer FHammer <f.thauer@web.de>, (C) 2007
|
||||
//
|
||||
// Copyright: See COPYING file that comes with this distribution
|
||||
//
|
||||
//
|
||||
#ifndef STARTSPLASH_H
|
||||
#define STARTSPLASH_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
/**
|
||||
@author FThauer FHammer <f.thauer@web.de>
|
||||
*/
|
||||
class StartSplash : public QWidget
|
||||
{
|
||||
public:
|
||||
StartSplash();
|
||||
|
||||
~StartSplash();
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user