blob: 906e8994e89ce004a6e48aa5fc601f1ec84d8071 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/****************************************************************
**
** Definition of PrintPanel class, translation tutorial 3
**
****************************************************************/
#ifndef PRINTPANEL_H
#define PRINTPANEL_H
#include <tqvbox.h>
class PrintPanel : public TQVBox
{
TQ_OBJECT
public:
PrintPanel( TQWidget *parent = 0, const char *name = 0 );
};
#endif
|