00001 #ifndef QLABREPORT_H 00002 #define QLABREPORT_H 00003 00004 00005 #include <qobject.h> 00006 #include <qvariant.h> 00007 00008 class QlabReport : public QObject 00009 { 00010 Q_OBJECT ; 00011 00012 public : 00013 QlabReport( QObject * parent = 0, char * name = 0 ) ; 00014 ~QlabReport() ; 00015 00016 public slots : 00017 00018 signals : 00019 00020 protected : 00021 00022 protected slots : 00023 00024 private : 00025 QString reportTitle ; 00026 QString reportAuthor ; 00027 00028 00029 } ; 00030 00031 #endif // QLABREPORT_H 00032