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/dcopjava/tests/main.cpp

18 lines
289 B

#include <tdeapplication.h>
#include <dcopclient.h>
#include "test_impl.h"
int main(int argc, char *argv[])
{
TDEApplication app(argc, argv, "test-server", false, false);
app.dcopClient()->registerAs("test-server", false);
test_impl *t = new test_impl;
return app.exec();
}