view Lib/IMPL/Web/View/TemplateView.pm @ 376:a54a2faf2f7e

added localizable string maps
author cin
date Mon, 13 Jan 2014 17:52:04 +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;