USGS

Isis 3.0 Developer's Reference (API)

Home

GuiLog.h

Go to the documentation of this file.
00001 
00002 #ifndef Isis_GuiLog_h
00003 #define Isis_GuiLog_h
00004 
00005 #include <QTextEdit>
00006 
00007 namespace Isis {
00013   class GuiLog : public QWidget {
00014 
00015       Q_OBJECT
00016 
00017     public:
00018 
00019       GuiLog(QWidget *parent = 0);
00020       ~GuiLog();
00021 
00022       void Write(const QString &string);
00023 
00024     public slots:
00025       void Clear();
00026       void Save();
00027 
00028     private:
00029       QTextEdit *p_textEdit;
00030   };
00031 };
00032 
00033 
00034 
00035 #endif