Source Code (Use browser search to find items of interest.)

Class Index

ksirc'errorInvalidSet (./kdenetwork/ksirc/puke/pmessage.h:20)

class errorInvalidSet {
public:
  errorInvalidSet(QObject *_from, const char *_to)
    : __from(_from), __to(_to)
  {
  }

  QObject *from() { return __from; }
  const char *to() { return __to; }
    
private:
  QObject *__from;
  const char *__to;

};