Prevent moving or copying.
| 93 | ~LiveGenerator(); |
| 94 | // Prevent moving or copying. |
| 95 | LiveGenerator(const LiveGenerator& rhs) = delete; |
| 96 | LiveGenerator(LiveGenerator&& rhs) = delete; |
| 97 | LiveGenerator& operator=(const LiveGenerator& rhs) = delete; |
| 98 | LiveGenerator& operator=(LiveGenerator&& rhs) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected