| 197 | } // namespace messages |
| 198 | |
| 199 | shared_ptr<ImagingComponent> |
| 200 | ImagingComponent::create(OSVR_ChannelCount numChan) { |
| 201 | shared_ptr<ImagingComponent> ret(new ImagingComponent(numChan)); |
| 202 | return ret; |
| 203 | } |
| 204 | ImagingComponent::ImagingComponent(OSVR_ChannelCount numChan) |
| 205 | : m_numSensor(numChan) {} |
| 206 |
nothing calls this directly
no outgoing calls
no test coverage detected