FORUM CTRLX AUTOMATION
ctrlX World Partner Apps for ctrlX AUTOMATION
04-30-2024 06:04 PM
Hello everyone,
Following this topic, i have another error that I don't find solution.
What I'm missing?
04-30-2024 08:22 PM
Hi @Andrefs ,
These are just general c++ questions and not so specific to the SDK functions. It is hard to troubleshoot exactly without the rest of the code here, especially not knowing how m_provider is defined. I think you just may need to either dereference or take the memory address of the provider returned from m_datalayerfactoryPtr->createProvider().
For example,
// Memory address operator &
m_provider = &m_datalayerfactoryPtr->createProvider(conString);
// Dereference operator *
m_provider = *m_datalayerfactoryPtr->createProvider(conString);
05-10-2024 10:14 AM
I haven't managed to solve this problem yet. However, all the code compiles and works. I think it's an environment configuration problem, but I haven't figured it out yet.
09-06-2024 09:46 AM
Any news here? Could this issue been solved?