12345678910 |
- #include "netinterfaces_plugin.h"
- #include "netinterfaces.h"
- #include <qqml.h>
- void NetInterfacesPlugin::registerTypes(const char *uri)
- {
- // gfa.plugins.qml.net
- qmlRegisterType<NetInterfaces>(uri, 1, 0, "NetInterfaces");
- qmlRegisterUncreatableType<Interface>(uri, 1, 0, "Interface", "return type only");
- }
|