MCPcopy Create free account
hub / github.com/OSVR/OSVR-Core / m_processArray

Method m_processArray

src/osvr/Common/AliasProcessor.cpp:108–114  ·  view source on GitHub ↗

@brief Takes in an array of objects, and passes them each, in order, to m_processObject()

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected