You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdevelop/languages/cpp/app_templates/noatunui/plugin_app.cpp

16 lines
231 B

#include "plugin_%{APPNAMELC}_impl.h"
#include <tdeglobal.h>
#include <tdelocale.h>
extern "C"
{
Plugin *create_plugin()
{
TDEGlobal::locale()->insertCatalogue("%{APPNAMELC}");
return new %{APPNAME}UI;
}
}