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.
tqt3/tools/designer/examples/vcr/vcr.h

18 lines
262 B

#ifndef VCR_H
#define VCR_H
#include <ntqwidget.h>
class Vcr : public TQWidget
{
TQ_OBJECT
public:
Vcr( TQWidget *parent = 0, const char *name = 0 );
~Vcr() {}
signals:
void rewind();
void play();
void next();
void stop();
};
#endif