You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
387 B
C
20 lines
387 B
C
14 years ago
|
/****************************************************************
|
||
|
**
|
||
|
** 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
|