view Lib/IMPL/Object/Fields.pm @ 197:6b1dda998839

Added IMPL::declare, IMPL::require, to simplify module definitions IMPL::Transform now admires object inheritance while searching for the transformation Added HTTP some exceptions IMPL::Web::Application::RestResource almost implemented
author sergey
date Thu, 19 Apr 2012 02:10:02 +0400
parents 4d0e1962161c
children
line wrap: on
line source

package IMPL::Object::Fields;
use strict;
use warnings;

use parent qw(IMPL::Object::Abstract);

sub new {
    my $class = shift;
    
    $class = ref $class || $class;
    
    my $this = fields::new($class);
    $this->callCTOR(@_);
    
    return $this;
}

sub surrogate {
    my $class = shift;
    
    $class = ref $class || $class;
    
    return fields::new($class);
}

1;