1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef __WE_IFACE_H #define __WE_IFACE_H #include <dcopobject.h> class weatherIface : virtual public DCOPObject { K_DCOP public: k_dcop: /** Cause KWeather to refrsh it's data **/ virtual void refresh(TQString) = 0; }; #endif