@brief Takes in an array of objects, and passes them each, in order, to m_processObject()
| 106 | /// @brief Takes in an array of objects, and passes them each, in |
| 107 | /// order, to m_processObject() |
| 108 | void m_processArray(Json::Value const &arr) { |
| 109 | for (auto const &elt : arr) { |
| 110 | if (elt.isObject()) { |
| 111 | m_processObject(elt); |
| 112 | } |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | /// @brief Takes in an object, retrieves the priority specified by |
| 117 | /// the PRIORITY_KEY, if any, then passes all other entries in |
nothing calls this directly
no outgoing calls
no test coverage detected