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

18 lines
257 B
C++

#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