blob: 0110c520063d872396ed95d739b2d829241fb500 (
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 <qvbox.h>
class PrintPanel : public QVBox
{
Q_OBJECT
public:
PrintPanel( QWidget *parent = 0, const char *name = 0 );
};
#endif
|