| 65 | } // namespace messages |
| 66 | |
| 67 | shared_ptr<Location2DComponent> |
| 68 | Location2DComponent::create(OSVR_ChannelCount numChan) { |
| 69 | shared_ptr<Location2DComponent> ret(new Location2DComponent(numChan)); |
| 70 | return ret; |
| 71 | } |
| 72 | |
| 73 | Location2DComponent::Location2DComponent(OSVR_ChannelCount numChan) |
| 74 | : m_numSensor(numChan) {} |
nothing calls this directly
no outgoing calls
no test coverage detected