blob: e0d3049221aa749280cde3f56016c7b695ac7a2c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | /****************************************************************
**
** Definition of ArrowPad class, translation tutorial 2
**
****************************************************************/
#ifndef ARROWPAD_H
#define ARROWPAD_H
#include <ntqgrid.h>
class ArrowPad : public TQGrid
{
    TQ_OBJECT
public:
    ArrowPad( TQWidget *parent = 0, const char *name = 0 );
private:
    void skip();
};
#endif
 |