Hi all, hope somebody can help me,
Suppose you have a class which is called A(Is QThread) and in this class you have a big vector(QVector) of values(count =1000). All you want to do is to in every second in A you have to update values and some operations with this list also have to be done in Classes B and C.
I've confusion with design. I can send QVector via signal to those classes in every interval(class A is a simple thread). But i thought that might be slow. Isn't it better to have a pointer of vector in other classes?
Can anybody help me with this design?