You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
384 B
20 lines
384 B
%{H_TEMPLATE}
|
|
|
|
#include <dcopobject.h>
|
|
|
|
class DCOPDemoIface : virtual public DCOPObject
|
|
{
|
|
K_DCOP
|
|
k_dcop:
|
|
|
|
|
|
// Here you should place your DCOP interface.
|
|
// Below are four example methods.
|
|
virtual TQString strVal() const = 0;
|
|
virtual int intVal() const = 0;
|
|
|
|
virtual void setIntVal( int num ) = 0;
|
|
virtual void setStrVal( const TQString &str ) = 0;
|
|
|
|
};
|