00001
00002
00003
00004
00005
00006 #ifndef OUTPUT_H
00007 #define OUTPUT_H
00008
00009 #include <qvariant.h>
00010 #include <qdialog.h>
00011 class QVBoxLayout;
00012 class QHBoxLayout;
00013 class QGridLayout;
00014 class QMultiLineEdit;
00015
00016 class Output : public QDialog
00017 {
00018 Q_OBJECT
00019
00020 public:
00021 Output( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00022 ~Output();
00023
00024 QMultiLineEdit* OutputEdit;
00025
00026 protected:
00027 QGridLayout* OutputLayout;
00028 };
00029
00030 #endif // OUTPUT_H