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