comparison Lib/IMPL/Web/View/TemplateView.pm @ 244:a02b110da931

refactoring fixed binding to CGI query parameters with multiple values
author sergey
date Mon, 22 Oct 2012 04:09:27 +0400
parents
children 2879cdb6b8cd
comparison
equal deleted inserted replaced
243:cd2b1f121029 244:a02b110da931
1 package IMPL::Web::View::TemplateView;
2 use strict;
3
4 use IMPL::Const qw(:prop);
5 use IMPL::declare {
6 base => [
7 'IMPL::Web::ViewResult' => '@_'
8 ],
9 props => [
10 template => PROP_RW,
11 defaultTemplate => PROP_RW
12 ]
13 };
14
15 1;