File: Object.pm

package info (click to toggle)
librose-db-object-perl 1%3A0.798-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,380 kB
  • sloc: perl: 79,335; sql: 28; makefile: 7
file content (7 lines) | stat: -rw-r--r-- 149 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
# Common Rose::DB::Object-derived base class
package My::Object;
use strict;
use My::DB;
use base 'Rose::DB::Object';
sub init_db { My::DB->new }
1;