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.
|
#ifndef VCR_H
|
|
#define VCR_H
|
|
#include <tqwidget.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
|