Hi !

So today my problem is the following :

I have an "already-developped" C++ class that works on windows platform. This class can read/write frame on a CAN network. The code has been written in C++ (not using Qt) and uses some specific windows function call, library and std templates (std::map). This class is named CCanCardIO.

Due to a lake of time (and also because I don't have the can card API documentation) I must use the CCanCardIO class as it, but I whish to integrate it into a Qt class using slots and signals mechanisms.

My question is the following :
"Is it possible to do such an integretion if the CCanCardIO uses specific code such as std::map, CreateThread function call ?"

Thanks in advance.