summaryrefslogtreecommitdiff
path: root/noncore/styles/liquid/plugin.cpp
Unidiff
Diffstat (limited to 'noncore/styles/liquid/plugin.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/styles/liquid/plugin.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/noncore/styles/liquid/plugin.cpp b/noncore/styles/liquid/plugin.cpp
new file mode 100644
index 0000000..fca7c06
--- a/dev/null
+++ b/noncore/styles/liquid/plugin.cpp
@@ -0,0 +1,29 @@
1#include "liquid.h"
2
3
4extern "C" {
5 QStyle* allocate ( );
6 int minor_version ( );
7 int major_version ( );
8 const char *description ( );
9}
10
11QStyle* allocate ( )
12{
13 return new LiquidStyle ( );
14}
15
16int minor_version ( )
17{
18 return 0;
19}
20
21int major_version ( )
22{
23 return 1;
24}
25
26const char *description ( )
27{
28 return "High performance liquid plugin";
29}