summaryrefslogtreecommitdiffstats
path: root/sigencore/plugins
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-06-06 15:20:34 -0400
committerBen Boeckel <MathStuf@gmail.com>2009-06-06 15:20:34 -0400
commit61ad05171537eafcb0e62e7c390f7b3ce53db3d7 (patch)
treee6a8433319baf2ba9c3c36f2e7d1aa71b8827513 /sigencore/plugins
parentadf271d254d5f6e8a4a918dd549b71204c4d6bca (diff)
downloadsigen-61ad05171537eafcb0e62e7c390f7b3ce53db3d7.tar.gz
sigen-61ad05171537eafcb0e62e7c390f7b3ce53db3d7.tar.xz
sigen-61ad05171537eafcb0e62e7c390f7b3ce53db3d7.zip
Plugins don't need a version macro anymore
Diffstat (limited to 'sigencore/plugins')
-rw-r--r--sigencore/plugins/ArenaPlugin.h3
-rw-r--r--sigencore/plugins/CanvasPlugin.h3
-rw-r--r--sigencore/plugins/ClientPlugin.h3
3 files changed, 0 insertions, 9 deletions
diff --git a/sigencore/plugins/ArenaPlugin.h b/sigencore/plugins/ArenaPlugin.h
index cc89cd58..4305119f 100644
--- a/sigencore/plugins/ArenaPlugin.h
+++ b/sigencore/plugins/ArenaPlugin.h
@@ -64,8 +64,5 @@ class SIGENCOREPLUGINS_EXPORT ArenaPlugin : public PluginBase
#define SIGEN_ARENA_PLUGIN(type, name) \
K_PLUGIN_FACTORY(ArenaFactory, registerPlugin<type>();) \
K_EXPORT_PLUGIN(ArenaFactory(name))
-#define SIGEN_ARENA_PLUGIN_VERSION(type, name, version) \
- SIGEN_ARENA_PLUGIN(type, name) \
- K_EXPORT_PLUGIN_VERSION(version)
#endif
diff --git a/sigencore/plugins/CanvasPlugin.h b/sigencore/plugins/CanvasPlugin.h
index ed026be1..bf3f23bc 100644
--- a/sigencore/plugins/CanvasPlugin.h
+++ b/sigencore/plugins/CanvasPlugin.h
@@ -64,8 +64,5 @@ class SIGENCOREPLUGINS_EXPORT CanvasPlugin : public PluginBase
#define SIGEN_CANVAS_PLUGIN(type, name) \
K_PLUGIN_FACTORY(CanvasFactory, registerPlugin<type>();) \
K_EXPORT_PLUGIN(CanvasFactory(name))
-#define SIGEN_CANVAS_PLUGIN_VERSION(type, name, version) \
- SIGEN_CANVAS_PLUGIN(type, name) \
- K_EXPORT_PLUGIN_VERSION(version)
#endif
diff --git a/sigencore/plugins/ClientPlugin.h b/sigencore/plugins/ClientPlugin.h
index 0bb0c521..3469541e 100644
--- a/sigencore/plugins/ClientPlugin.h
+++ b/sigencore/plugins/ClientPlugin.h
@@ -64,8 +64,5 @@ class SIGENCOREPLUGINS_EXPORT ClientPlugin : public PluginBase
#define SIGEN_PLAYER_PLUGIN(type, name) \
K_PLUGIN_FACTORY(PlayerFactory, registerPlugin<type>();) \
K_EXPORT_PLUGIN(PlayerFactory(name))
-#define SIGEN_PLAYER_PLUGIN_VERSION(type, name, version) \
- SIGEN_PLAYER_PLUGIN(type, name) \
- K_EXPORT_PLUGIN_VERSION(version)
#endif