summaryrefslogtreecommitdiffstats
path: root/dcoppython/test/dcopserver/kdedcoptest.cpp
blob: f7a0bdf538216cf4f717070a466c21c85c70c467 (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 "kdedcoptest.h"

#include <tqlabel.h>

#include <kmainwindow.h>
#include <klocale.h>

KDEDcopTest::KDEDcopTest()
    : TDEMainWindow( 0, "KDEDcopTest" )
{
    // set the shell's ui resource file
    //setXMLFile("kdedcoptestui.rc");

    //new TQLabel( "Hello World", this, "hello label" );
    m_mainClass = new MainClass();
}

KDEDcopTest::~KDEDcopTest()
{
    if (m_mainClass) delete m_mainClass;
}

#include "kdedcoptest.moc"