File: Plugin.pm

package info (click to toggle)
libtm-perl 1.53-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 2,780 kB
  • ctags: 594
  • sloc: perl: 34,611; sh: 377; makefile: 50
file content (9 lines) | stat: -rw-r--r-- 148 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
package TM::Workbench::Plugin;                    # the mother of all plugins

sub new {
    my $class = shift;
    return bless {}, $class;
}

1;