Mercurial > pub > Impl
annotate Lib/IMPL/Web/View/TemplateView.pm @ 406:f23fcb19d3c1 ref20150831
implemented ServicesBag
author | cin |
---|---|
date | Mon, 31 Aug 2015 20:22:16 +0300 |
parents | 715b9959b207 |
children |
rev | line source |
---|---|
244 | 1 package IMPL::Web::View::TemplateView; |
2 use strict; | |
3 | |
362 | 4 use Carp qw(carp); |
5 | |
244 | 6 use IMPL::Const qw(:prop); |
7 use IMPL::declare { | |
8 base => [ | |
9 'IMPL::Web::ViewResult' => '@_' | |
10 ], | |
11 props => [ | |
12 template => PROP_RW, | |
13 ] | |
14 }; | |
15 | |
362 | 16 sub CTOR { |
17 carp "deprecated"; | |
18 } | |
19 | |
244 | 20 1; |