This is a long shot but, having come across a constrain in a form of a qt's signals, slots being unable to be templatized, I'm just thinking of replacing them with boost signals, would that be viable option?
相关问题
- Sorting 3 numbers without branching [closed]
- QML: Cannot read property 'xxx' of undefin
- How to compile C++ code in GDB?
- Why does const allow implicit conversion of refere
- thread_local variables initialization
相关文章
- ubuntu20.4中c#通过c++库调用python脚本
- Qt槽函数自动执行多遍
- Class layout in C++: Why are members sometimes ord
- How to mock methods return object with deleted cop
- Which is the best way to multiply a large and spar
- C++ default constructor does not initialize pointe
- Selecting only the first few characters in a strin
- What exactly do pointers store? (C++)
You are not forced to use qt's signals and slots. From Using Qt with 3rd Party Signals and Slots:
There is a complete explanation of how to connect boost signals to qt signals.
I found this adapter somewhere on the net, but no idea where:
So, basically you have to reimplement
qt_metacall
function.