~djfun/+junk/qmlfluidsynth

« back to all changes in this revision

Viewing changes to fluidsynth_plugin.h

  • Committer: Martin Kaistra
  • Date: 2013-05-29 22:37:55 UTC
  • Revision ID: martin@djfun.de-20130529223755-4jggoagx8plk62wi
first commit, working demo (at least on the desktop)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef FLUIDSYNTH_PLUGIN_H
 
2
#define FLUIDSYNTH_PLUGIN_H
 
3
 
 
4
#include <QQmlExtensionPlugin>
 
5
 
 
6
class FluidsynthPlugin : public QQmlExtensionPlugin
 
7
{
 
8
    Q_OBJECT
 
9
    Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
 
10
    
 
11
public:
 
12
    void registerTypes(const char *uri);
 
13
};
 
14
 
 
15
#endif // FLUIDSYNTH_PLUGIN_H
 
16