Hi,

I have a class like that:

Qt Code:
  1. class A
  2. A(QHash<QSrting,QVariant>); //Constructor
To copy to clipboard, switch view to plain text mode 

But the compiler is getting me "class without constructors" when trying to create a "A" class object.

Wich is the problem? I'm able to use a constrctor getting an "int" as parameter but it seems to not like the QHash parameter?

Thanks,