KStyles
plugin.cpp
Go to the documentation of this file.00001 #include <klocale.h> 00002 #include "webstyle.h" 00003 00004 extern "C" 00005 { 00006 KStyle * allocate() { return new WebStyle; } 00007 int minor_version() { return 0; } 00008 int major_version() { return 1; } 00009 const char * description() { return(i18n("Web style plugin").toUtf8()); } 00010 } 00011