blob: 565b7b6295d6a0af20c3442e9fa8d50825943d4e (
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
{
Q_OBJECT
public:
PrintPanel( TQWidget *parent = 0, const char *name = 0 );
};
#endif
|