| 35 | }; |
| 36 | |
| 37 | class EmptySensorInterface : public SensorInterface { |
| 38 | public: |
| 39 | EmptySensorInterface(){}; |
| 40 | bool init() override final { return true; }; |
| 41 | void swapIn() override final{}; |
| 42 | [[nodiscard]] std::string toString() const final { return "None"; } |
| 43 | |
| 44 | static EmptySensorInterface instance; |
| 45 | }; |
| 46 | } // namespace SlimeVR |
| 47 | |
| 48 | #endif // SENSORINTERFACE_H |
nothing calls this directly
no outgoing calls
no test coverage detected