///////////////////////////////////////////////////////////////////////////
| 116 | |
| 117 | //////////////////////////////////////////////////////////////////////////////// |
| 118 | Task::Task(const std::string& input) { |
| 119 | id = 0; |
| 120 | urgency_value = 0.0; |
| 121 | recalc_urgency = true; |
| 122 | is_blocked = false; |
| 123 | is_blocking = false; |
| 124 | annotation_count = 0; |
| 125 | |
| 126 | parse(input); |
| 127 | } |
| 128 | |
| 129 | //////////////////////////////////////////////////////////////////////////////// |
| 130 | Task::Task(const json::object* obj) { |
nothing calls this directly
no outgoing calls
no test coverage detected