| 123456789101112131415161718192021222324252627282930 | 
#ifndef __ctkTestWrappedSlot_h#define __ctkTestWrappedSlot_h// Qt includes#include <QObject>class ctkTestWrappedSlot : public QObject{  Q_OBJECTpublic:  ctkTestWrappedSlot(QObject * newParent = 0) : QObject(newParent)    {    this->Value = 0;    }public slots:  int value() const { return this->Value; }  void setValue(int newValue){ this->Value = newValue; }private:  int        Value;};#endif
 |