File: Strict.pm

package info (click to toggle)
libxml-xql-perl 0.68-9
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 868 kB
  • sloc: perl: 5,842; xml: 4,007; makefile: 16
file content (12 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
package XML::XQL::Strict;

BEGIN
{
    die "Can't 'use' or 'require' XML::XQL module before XML::XQL::Strict\nJust 'us' or 'require' XML::XQL::Strict instead" if ($XML::XQL::Included);

    $XML::XQL::Restricted = 1;

    require XML::XQL;
};

1;