#ifndef FILE_H #define FILE_H #include #include #include #include using namespace std; struct Node; class LinkedList { private: QList _linkedList; QList omitedLines; Node* head; void qListLinked(Node* newNode, int count); void pushBack(string sender, string receiver, string command, float time, int count); void qListOmit(string line); void addToOmitList(int where); void removeOmitLast(); void addTime(float time); void makeLinkedList(); void chainDetector(); void fileOpen(const QString& path); public: QList Initiate(const QString& path); float convertTime(float input); }; #endif //FILE_H