This commit is contained in:
doitux
2007-01-24 19:49:23 +00:00
parent a4e9b82d90
commit 3c00c4d413
2 changed files with 0 additions and 0 deletions
+24
View File
@@ -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()
{
}
+29
View File
@@ -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