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