File: plugin.cpp

package info (click to toggle)
kdeartwork 2.2.2-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 10,860 kB
  • ctags: 352
  • sloc: sh: 10,646; cpp: 4,470; perl: 1,852; python: 258; makefile: 175
file content (29 lines) | stat: -rw-r--r-- 372 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include "b3style.h"
#include <klocale.h>

extern "C" {
    KStyle* allocate();
    int minor_version();
    int major_version();
    const char *description();
}

KStyle* allocate()
{
    return(new B3Style);
}

int minor_version()
{
    return(0);
}

int major_version()
{
    return(1);
}

const char *description()
{
    return(i18n("B3/K unthemed plugin").utf8());
}