src/messagelog.h

changeset 504
6a1fa662bfc1
parent 493
16766ac1bbd9
child 538
2f85d4d286e5
equal deleted inserted replaced
503:bebe09014dd6 504:6a1fa662bfc1
53 QDateTime expiry; 53 QDateTime expiry;
54 }; 54 };
55 55
56 explicit MessageManager (QObject* parent = 0); 56 explicit MessageManager (QObject* parent = 0);
57 void addLine (str line); 57 void addLine (str line);
58 const List<Line>& getLines() const; 58 const QList<Line>& getLines() const;
59 59
60 private: 60 private:
61 List<Line> m_lines; 61 QList<Line> m_lines;
62 QTimer* m_ticker; 62 QTimer* m_ticker;
63 63
64 private slots: 64 private slots:
65 void tick(); 65 void tick();
66 }; 66 };

mercurial