view lib/IMPL/Object/Fields.pm @ 416:cc2cf8c0edc2 ref20150831

sync
author cin
date Thu, 29 Oct 2015 03:50:25 +0300
parents c6e90e02dd17
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;