| 68 | }; |
| 69 | |
| 70 | class Queue { |
| 71 | public: |
| 72 | Queue(nlohmann::json object, const C2D_Image &img, const std::string &name, const std::string &uName, const std::string &eName, const std::string &lUpdated) : |
| 73 | obj(object), icn(img), total(object.size()), current(QueueSystem::LastElement), name(name), unistoreName(uName), entryName(eName), lastUpdated(lUpdated) { }; |
| 74 | |
| 75 | QueueStatus status = QueueStatus::None; |
| 76 | nlohmann::json obj; |
| 77 | C2D_Image icn; |
| 78 | int total, current; |
| 79 | std::string name = "", unistoreName = "", entryName = "", lastUpdated = ""; |
| 80 | int Stars = 0; |
| 81 | }; |
| 82 | |
| 83 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected