summaryrefslogtreecommitdiffstats
path: root/tools/designer/examples/vcr/vcr.h
blob: 1c407d1724dd1e100ef4f699c61388b11a7db9c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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