From 677591d144a73ddfa8d989ffa7e7c7536847805a Mon Sep 17 00:00:00 2001 From: mlaurent Date: Mon, 1 Aug 2005 13:18:32 +0000 Subject: [PATCH] Remove it too, generated git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/KDE/kdeaccessibility@442054 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- ksayit/src/ksayit_skel.cpp | 74 ---------------------------------------------- 1 file changed, 74 deletions(-) delete mode 100644 ksayit/src/ksayit_skel.cpp diff --git a/ksayit/src/ksayit_skel.cpp b/ksayit/src/ksayit_skel.cpp deleted file mode 100644 index 8ee6dd60..00000000 --- a/ksayit/src/ksayit_skel.cpp +++ /dev/null @@ -1,74 +0,0 @@ -/**************************************************************************** -** -** DCOP Skeleton generated by dcopidl2cpp from ksayit.kidl -** -** WARNING! All changes made in this file will be lost! -** -*****************************************************************************/ - -#include "/home/lmontel/kde-4.0/kde4/kdeaccessibility/ksayit/src/ksayit.h" - -#include - - -static const char* const KSayItApp_ftable[4][3] = { - { "ASYNC", "dcopSayText(QString)", "dcopSayText(QString msg)" }, - { "ASYNC", "dcopStop()", "dcopStop()" }, - { "ASYNC", "dcopSayXmlFile(KURL)", "dcopSayXmlFile(KURL url)" }, - { 0, 0, 0 } -}; -static const int KSayItApp_ftable_hiddens[3] = { - 0, - 0, - 0, -}; - -bool KSayItApp::process(const DCOPCString &fun, const QByteArray &data, DCOPCString& replyType, QByteArray &replyData) -{ - if ( fun == KSayItApp_ftable[0][1] ) { // void dcopSayText(QString) - QString arg0; - QDataStream arg( data ); - arg.setVersion( QDataStream::Qt_3_1 ); - if (arg.atEnd()) return false; - arg >> arg0; - replyType = KSayItApp_ftable[0][0]; - dcopSayText(arg0 ); - } else if ( fun == KSayItApp_ftable[1][1] ) { // void dcopStop() - replyType = KSayItApp_ftable[1][0]; - dcopStop( ); - } else if ( fun == KSayItApp_ftable[2][1] ) { // void dcopSayXmlFile(KURL) - KURL arg0; - QDataStream arg( data ); - arg.setVersion( QDataStream::Qt_3_1 ); - if (arg.atEnd()) return false; - arg >> arg0; - replyType = KSayItApp_ftable[2][0]; - dcopSayXmlFile(arg0 ); - } else { - return DCOPObject::process( fun, data, replyType, replyData ); - } - return true; -} - -DCOPCStringList KSayItApp::interfaces() -{ - DCOPCStringList ifaces = DCOPObject::interfaces(); - ifaces += "KSayItApp"; - return ifaces; -} - -DCOPCStringList KSayItApp::functions() -{ - DCOPCStringList funcs = DCOPObject::functions(); - for ( int i = 0; KSayItApp_ftable[i][2]; i++ ) { - if (KSayItApp_ftable_hiddens[i]) - continue; - DCOPCString func = KSayItApp_ftable[i][0]; - func += ' '; - func += KSayItApp_ftable[i][2]; - funcs << func; - } - return funcs; -} - - -- 2.11.4.GIT