| 61 | } // namespace messages |
| 62 | |
| 63 | shared_ptr<EyeTrackerComponent> |
| 64 | EyeTrackerComponent::create(OSVR_ChannelCount numChan) { |
| 65 | shared_ptr<EyeTrackerComponent> ret(new EyeTrackerComponent(numChan)); |
| 66 | return ret; |
| 67 | } |
| 68 | |
| 69 | EyeTrackerComponent::EyeTrackerComponent(OSVR_ChannelCount numChan) |
| 70 | : m_numSensor(numChan) {} |
nothing calls this directly
no outgoing calls
no test coverage detected