/*************************************************************************** * Copyright (C) 2004 by Martin Merck * * merck@astro.uni-wuerzburg.de * * * * This software is part of the MAGIC software. * ***************************************************************************/ #include #include #include #include int main(int argc, char **argv) { KApplication app(argc, argv, "taper_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("taper", "TaperIface", "openURL(QString)", data); return app.exec(); }