1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef VCR_H #define VCR_H #include <tqwidget.h> class Vcr : public TQWidget { TQ_OBJECT public: Vcr( TQWidget *tqparent = 0, const char *name = 0 ); ~Vcr() {} Q_SIGNALS: void rewind(); void play(); void next(); void stop(); }; #endif