OSDN Git Service

New cvs tree structure.
[kita/kita.git] / src / kita_client.cpp
diff --git a/src/kita_client.cpp b/src/kita_client.cpp
deleted file mode 100644 (file)
index f006f05..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Copyright (C) 2001 Hideki Ikemoto <ikemo@wakaba.jp>
- */
-
-#include <kapplication.h>
-#include <dcopclient.h>
-#include <qdatastream.h>
-#include <qstring.h>
-
-int main(int argc, char **argv)
-{
-    KApplication app(argc, argv, "kita_client", false);
-
-    // get our DCOP client and attach so that we may use it
-    DCOPClient *client = app.dcopClient();
-    client->attach();
-
-    // do a 'send' for now
-    QByteArray data;
-    QDataStream ds(data, IO_WriteOnly);
-    if (argc > 1)
-        ds << QString(argv[1]);
-    else
-        ds << QString("http://www.kde.org");
-    client->send("kita", "KitaIface", "openURL(QString)", data);
-
-    return app.exec();
-}