module_skel.cpp00001
00002
00003
00004
00005
00006
00007
00008
00009 #include "./module.h"
00010
00011 #include <kdatastream.h>
00012
00013
00014 static const char* const KDETrayModule_ftable[1][3] = {
00015 { 0, 0, 0 }
00016 };
00017
00018 bool KDETrayModule::process(const QCString &fun, const QByteArray &data, QCString& replyType, QByteArray &replyData)
00019 {
00020 return KDEDModule::process( fun, data, replyType, replyData );
00021 }
00022
00023 QCStringList KDETrayModule::interfaces()
00024 {
00025 QCStringList ifaces = KDEDModule::interfaces();
00026 ifaces += "KDETrayModule";
00027 return ifaces;
00028 }
00029
00030 QCStringList KDETrayModule::functions()
00031 {
00032 QCStringList funcs = KDEDModule::functions();
00033 for ( int i = 0; KDETrayModule_ftable[i][2]; i++ ) {
00034 QCString func = KDETrayModule_ftable[i][0];
00035 func += ' ';
00036 func += KDETrayModule_ftable[i][2];
00037 funcs << func;
00038 }
00039 return funcs;
00040 }
00041
00042
|