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.
18 lines
285 B
18 lines
285 B
15 years ago
|
#include <kapplication.h>
|
||
|
#include <dcopclient.h>
|
||
|
|
||
|
|
||
|
#include "test_impl.h"
|
||
|
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
KApplication app(argc, argv, "test-server", false, false);
|
||
|
|
||
|
app.dcopClient()->registerAs("test-server", false);
|
||
|
|
||
|
test_impl *t = new test_impl;
|
||
|
|
||
|
return app.exec();
|
||
|
}
|