BuildLogViewer/BuildStatus.h
changeset 1 8e9c5760ce6f
child 2 6894bf2709c0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/BuildLogViewer/BuildStatus.h	Wed Sep 02 19:04:26 2009 -0700
@@ -0,0 +1,31 @@
+#ifndef BUILDSTATUS_H
+#define BUILDSTATUS_H
+
+#include <QObject>
+#include <QDateTime>
+
+class BuildStatus : public QObject
+{
+public:
+    BuildStatus(QObject *parent = 0);
+
+    void setName(QString n);
+    QString name();
+
+    void setTime(QDateTime w);
+    QString Time();
+
+    void setStatus (bool n ) { m_status = n ; } ;
+
+
+
+    // What was the name of the package?
+    QString *m_packageName;
+    // At this time, the symbain build log doesn't have a timestamp in it.
+    // So, we will use the timestamp on the file.
+    QDateTime m_when;
+    // Did the build succeed?
+    bool m_status;
+};
+
+#endif // BUILDSTATUS_H