comparison skeleton/MyPlugin.h @ 412:6c38ae0a25e5

Minor tweak to guard
author Chris Cannam
date Fri, 04 Sep 2015 12:37:47 +0100
parents 6c9f10b8a53a
children
comparison
equal deleted inserted replaced
411:c42aeb56d828 412:6c38ae0a25e5
3 // libraries. Replace MyPlugin and myPlugin throughout with the name 3 // libraries. Replace MyPlugin and myPlugin throughout with the name
4 // of your first plugin class, and fill in the gaps as appropriate. 4 // of your first plugin class, and fill in the gaps as appropriate.
5 5
6 6
7 // Remember to use a different guard symbol in each header! 7 // Remember to use a different guard symbol in each header!
8 #ifndef _MY_PLUGIN_H_ 8 #ifndef MY_PLUGIN_H
9 #define _MY_PLUGIN_H_ 9 #define MY_PLUGIN_H
10 10
11 #include <vamp-sdk/Plugin.h> 11 #include <vamp-sdk/Plugin.h>
12 12
13 using std::string; 13 using std::string;
14 14