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.
18 lines
259 B
18 lines
259 B
13 years ago
|
#ifndef VCR_H
|
||
|
#define VCR_H
|
||
|
#include <qwidget.h>
|
||
|
|
||
|
class Vcr : public TQWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
Vcr( TQWidget *parent = 0, const char *name = 0 );
|
||
|
~Vcr() {}
|
||
|
signals:
|
||
|
void rewind();
|
||
|
void play();
|
||
|
void next();
|
||
|
void stop();
|
||
|
};
|
||
|
#endif
|