File: AutoCleanWidget.pm

package info (click to toggle)
libobject-id-perl 0.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 176 kB
  • ctags: 9
  • sloc: perl: 291; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 222 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package AutoCleanWidget;

# A test module for t/autoclean.t to demonstrate a class which
# uses namespace::autoclean.

use strict;
use warnings;

use namespace::autoclean;

use Object::ID;

sub new { bless {}, $_[0] }

1;