You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/dcoppython/test/dcopserver/tdedcoptest.cpp

28 lines
505 B

/*
* 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"