#include #include #include "Rtypes.h" class A{//:public TQObject { RQ_OBJECT("A") private: Int_t fValue; public: A() : fValue(0) { } ~A() { } void SetValue(Int_t value); // *SIGNAL* void PrintValue() const { printf("value = %d\n", fValue); } ClassDef(A, 1); };