Yellow text color if training queue has room for more skills, adjust text location
[evehomescreen] / src / eveskilltraining.h
index de1281e..4b76cf7 100644 (file)
@@ -9,6 +9,7 @@
 #include <QString>
 #include <QXmlStreamReader>
 #include <QNetworkAccessManager>
+#include <QtDebug>
 
 class EveCharacter;
 class EveModel;
@@ -17,13 +18,14 @@ class TrainingEntry {
 public:
     QDateTime startTime;
     QDateTime endTime;
-    QDateTime currentTime;
     int typeId;
     int startSkillpoints;
     int destSkillpoints;
     int level;
 };
 
+QDebug operator<<(QDebug, const TrainingEntry &);
+
 class EveSkillTraining : public QObject
 {
     Q_OBJECT
@@ -53,4 +55,6 @@ private:
     QList<TrainingEntry> m_trainingQueue;
 };
 
+
+
 #endif // EVESKILLTRAINING_H