blob: 2c7d34a6b16dc8ff2a67690782d7b2755dd298c9 (
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 <ntqvbox.h>
class PrintPanel : public TQVBox
{
TQ_OBJECT
public:
PrintPanel( TQWidget *parent = 0, const char *name = 0 );
};
#endif
|