| 27 | static bool typesRegistered = false; |
| 28 | |
| 29 | TVProcessorWorker::TVProcessorWorker(QObject *parent) : QObject(parent) |
| 30 | { |
| 31 | if (!typesRegistered) { |
| 32 | qRegisterMetaType<sigutils_tv_processor_params>(); |
| 33 | typesRegistered = true; |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | TVProcessorWorker::~TVProcessorWorker() |
| 38 | { |
nothing calls this directly
no outgoing calls
no test coverage detected