summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/nexscope/renderers.h
diff options
context:
space:
mode:
Diffstat (limited to 'noatun-plugins/nexscope/renderers.h')
-rw-r--r--noatun-plugins/nexscope/renderers.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/noatun-plugins/nexscope/renderers.h b/noatun-plugins/nexscope/renderers.h
new file mode 100644
index 0000000..3105849
--- /dev/null
+++ b/noatun-plugins/nexscope/renderers.h
@@ -0,0 +1,34 @@
+#ifndef RENDERERS_H
+#define RENDERERS_H
+
+#include <qstring.h>
+
+class Renderer;
+
+namespace Creators
+{
+
+
+
+#ifdef RENDERERS_CPP
+#define REGISTER(function, cl) \
+Renderer *function() \
+{ \
+ return new cl; \
+}
+#else
+#define REGISTER(function, cl) \
+Renderer *function();
+#endif
+
+REGISTER(fade, Fade)
+REGISTER(doubler, Doubler)
+REGISTER(waveform, HorizontalPair);
+REGISTER(hartley, Hartley);
+
+#undef REGISTER
+};
+
+
+#endif
+