view Lib/IMPL/Web/View/TemplateView.pm @ 393:69a1f1508696

minor security refactoring
author cin
date Fri, 14 Feb 2014 16:41:12 +0400
parents 715b9959b207
children
line wrap: on
line source

package IMPL::Web::View::TemplateView;
use strict;

use Carp qw(carp);

use IMPL::Const qw(:prop);
use IMPL::declare {
    base => [
        'IMPL::Web::ViewResult' => '@_'
    ],
    props => [
        template => PROP_RW,
    ]
};

sub CTOR {
	carp "deprecated";
}

1;