diff options
Diffstat (limited to 'tdestyles/web/plugin.cpp')
-rw-r--r-- | tdestyles/web/plugin.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tdestyles/web/plugin.cpp b/tdestyles/web/plugin.cpp new file mode 100644 index 000000000..bd4371ce3 --- /dev/null +++ b/tdestyles/web/plugin.cpp @@ -0,0 +1,11 @@ +#include <tdelocale.h> +#include "webstyle.h" + +extern "C" +{ + TDEStyle * allocate() { return new WebStyle; } + int minor_version() { return 0; } + int major_version() { return 1; } + const char * description() { return(i18n("Web style plugin").utf8()); } +} + |