blob: 5f46e83e894dc7ce187aa705e9a277857611eb05 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | 
#include "plugin_%{APPNAMELC}_impl.h"
#include <tdeglobal.h>
#include <tdelocale.h>
extern "C"
{
    Plugin *create_plugin()
    {
	TDEGlobal::locale()->insertCatalogue("%{APPNAMELC}");
        return new %{APPNAME}UI;
    }
}
 |