00001 #ifndef _QCOPLNK_H_ 00002 #define _QCOPLNK_H_ 00003 00004 #include <qpe/qpeapplication.h> 00005 #include <qpe/qcopenvelope_qws.h> 00006 00007 #include "AnyLnk.h" 00008 #include "KHUtil.h" 00009 00010 class QCopLnk : public AnyLnk 00011 { 00012 public: 00013 QCopLnk(){} 00014 QCopLnk(const QStringList& params) 00015 : AnyLnk(params){} 00016 virtual ~QCopLnk() { 00017 } 00018 00019 virtual bool isValid() { 00020 return(true); 00021 } 00022 virtual QString name() { 00023 return("qcop"); 00024 } 00025 virtual const QPixmap& pixmap() { 00026 return(m_pixmap); 00027 } 00028 00029 virtual void execute(); 00030 protected: 00031 }; 00032 00033 #endif /* _QCOPLNK_H_ */ 00034
1.4.2