You can not 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
392 B
20 lines
392 B
/****************************************************************
|
|
**
|
|
** 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
|