Skip to content

Instantly share code, notes, and snippets.

@xlab

xlab/plugin.cc Secret

Last active December 16, 2015 07:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xlab/2558aa068d49f0a2b6aa to your computer and use it in GitHub Desktop.
Save xlab/2558aa068d49f0a2b6aa to your computer and use it in GitHub Desktop.
plugin.cpp
#include <QtQml/qqml.h>
#include <QQmlExtensionPlugin>
class MyPluginMyClassPlugin : public QQmlExtensionPlugin {
Q_OBJECT
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
public:
void registerTypes(const char* uri) {
// ...
}
};
#include "plugin.moc"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment