00001 /* -*- Mode: c++ -*- 00002 * vim: set expandtab tabstop=4 shiftwidth=4: 00003 */ 00004 00005 #ifndef _LOG_LIST_H_ 00006 #define _LOG_LIST_H_ 00007 00008 #include "settings.h" 00009 00010 class LogList : public ListBoxSetting, public TransientStorage 00011 { 00012 public: 00013 LogList(); 00014 00015 void AppendLine(const QString &text); 00016 00017 private: 00018 uint idx; 00019 }; 00020 00021 #endif // _LOG_LIST_H_