BuildLogViewer/BuildStatus.h
changeset 3 e6d1a78b6db9
parent 2 6894bf2709c0
--- a/BuildLogViewer/BuildStatus.h	Thu Sep 03 16:31:30 2009 -0700
+++ b/BuildLogViewer/BuildStatus.h	Wed Mar 24 14:05:38 2010 -0700
@@ -6,17 +6,23 @@
 
 class BuildStatus : public QObject
 {
+    Q_OBJECT
+
 public:
     BuildStatus(QObject *parent = 0);
 
+public slots:
     void setName(QString n);
-    const QString *name();
-
+    void setStatus (bool n );
     void setTime(QDateTime w);
-    QString time();
+
+signals:
+    void textEmitted(const QString &);
 
-    void setStatus (bool n );
+public:
+    const QString *name();
     const QString *status();
+    QString time();
 
 private:
     // What was the name of the package?