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