25 lines
299 B
C++
25 lines
299 B
C++
//
|
|||
|
|
// 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()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
|