| 571 | } |
| 572 | |
| 573 | int getNumDevices() |
| 574 | { |
| 575 | if (!initialized) |
| 576 | return 0; |
| 577 | |
| 578 | if(!has_device_enumeration_) |
| 579 | { |
| 580 | enumerateDevices(); |
| 581 | } |
| 582 | return enumerated_devices_.size(); |
| 583 | } |
| 584 | |
| 585 | Freenect2Device *openDevice(int idx, const PacketPipeline *factory, bool attempting_reset); |
| 586 | }; |
no test coverage detected