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.
tdelibs/tdecore/tests/KIDLTest.cpp

34 lines
672 B

#include "KIDLTest.h"
#include <kapplication.h>
#include <dcopclient.h>
KIDLTest::KIDLTest( const TQCString& id )
: DCOPObject( id )
{
}
TQString KIDLTest::hello( const TQString& name )
{
tqDebug("Du heter %s", name.latin1() );
tqDebug("Ha det %s", name.latin1() );
return TQString("Jeg heter KIDLTest");
}
int main( int argc, char** argv )
{
TDEApplication app( argc, argv, "kidlservertest", false /* No GUI */ );
app.dcopClient()->attach();
app.dcopClient()->registerAs( "kidlservertest" );
tqDebug("Server process started...");
(void) new KIDLTest( "Hello" );
tqDebug("Server listening ...");
return app.exec();
}