blob: 58fd9ed539d3ec41c2c034d7c8b0a592cdf3393e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
* Copyright (C) 2003 Julian Rockey <kde@jrockey.com>
*/
#include "tdedcoptest.h"
#include <tqlabel.h>
#include <tdemainwindow.h>
#include <tdelocale.h>
KDEDcopTest::KDEDcopTest()
: TDEMainWindow( 0, "KDEDcopTest" )
{
// set the shell's ui resource file
//setXMLFile("tdedcoptestui.rc");
//new TQLabel( "Hello World", this, "hello label" );
m_mainClass = new MainClass();
}
KDEDcopTest::~KDEDcopTest()
{
if (m_mainClass) delete m_mainClass;
}
#include "tdedcoptest.moc"
|