Re: [Interest] import c++ plugin

2013-10-23 Thread Дмитрий Козлов
22.10.2013 14:46, Damian Ivanov пишет: > Hi all, > > I am still a beginner, so excuse me if I ask stupid questions :) > > I want to import a c++ plugin > void QtProcessPlugin::registerTypes(const char *uri) > { > // @uri QtProcess > qmlRegisterType(uri, 0, 1, "Process"); > } > > so I can

[Interest] import c++ plugin

2013-10-22 Thread Damian Ivanov
Hi all, I am still a beginner, so excuse me if I ask stupid questions :) I want to import a c++ plugin void QtProcessPlugin::registerTypes(const char *uri) { // @uri QtProcess qmlRegisterType(uri, 0, 1, "Process"); } so I can use it in qml. How should I add it to my open project in qtcre