Mercurial > pub > Impl
view Lib/IMPL/Web/View/TemplateView.pm @ 400:ef37ec102dab
redirection support while fetching child resources
author | cin |
---|---|
date | Wed, 14 May 2014 17:27:32 +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;