30 lines
400 B
C++
30 lines
400 B
C++
//
|
|
// 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
|