comparison Lib/IMPL.pm @ 194:4d0e1962161c

Replaced tabs with spaces IMPL::Web::View - fixed document model, new features (control classes, document constructor parameters)
author cin
date Tue, 10 Apr 2012 20:08:29 +0400
parents d1676be8afcc
children
comparison
equal deleted inserted replaced
193:8e8401c0aea4 194:4d0e1962161c
3 3
4 use IMPL::_core qw(setDebug); 4 use IMPL::_core qw(setDebug);
5 use IMPL::_core::version; 5 use IMPL::_core::version;
6 6
7 sub import { 7 sub import {
8 my ($opts) = @_; 8 my ($opts) = @_;
9 9
10 if (ref $opts eq 'HASH') { 10 if (ref $opts eq 'HASH') {
11 setDebug($$opts{Debug}) if exists $$opts{Debug}; 11 setDebug($$opts{Debug}) if exists $$opts{Debug};
12 } 12 }
13 } 13 }
14 14
15 1; 15 1;