line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# -*- perl -*- |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# |
4
|
|
|
|
|
|
|
# $Id: LangDoc.pm,v 1.4 2003/12/16 15:21:23 eserte Exp $ |
5
|
|
|
|
|
|
|
# Author: Slaven Rezic |
6
|
|
|
|
|
|
|
# |
7
|
|
|
|
|
|
|
# Copyright (C) 2001 Online Office Berlin. All rights reserved. |
8
|
|
|
|
|
|
|
# Copyright (C) 2002 Slaven Rezic. |
9
|
|
|
|
|
|
|
# This is free software; you can redistribute it and/or modify it under the |
10
|
|
|
|
|
|
|
# terms of the GNU General Public License, see the file COPYING. |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
# |
13
|
|
|
|
|
|
|
# Mail: slaven@rezic.de |
14
|
|
|
|
|
|
|
# WWW: http://we-framework.sourceforge.net |
15
|
|
|
|
|
|
|
# |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
package WE::Obj::LangDoc; |
18
|
|
|
|
|
|
|
|
19
|
13
|
|
|
13
|
|
69
|
use base qw(WE::Obj::Doc); |
|
13
|
|
|
|
|
21
|
|
|
13
|
|
|
|
|
924
|
|
20
|
|
|
|
|
|
|
|
21
|
13
|
|
|
13
|
|
63
|
use strict; |
|
13
|
|
|
|
|
24
|
|
|
13
|
|
|
|
|
382
|
|
22
|
13
|
|
|
13
|
|
79
|
use vars qw($VERSION); |
|
13
|
|
|
|
|
23
|
|
|
13
|
|
|
|
|
1337
|
|
23
|
|
|
|
|
|
|
$VERSION = sprintf("%d.%02d", q$Revision: 1.4 $ =~ /(\d+)\.(\d+)/); |
24
|
|
|
|
|
|
|
|
25
|
0
|
|
|
0
|
1
|
|
sub instantiable { 1 } |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
1; |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
__END__ |