The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Runops::Movie::TM::Simple;

use 5.006;
use strict;
use warnings;
use Carp;

require Exporter;

our @ISA = qw( Exporter );
our @EXPORT_OK = (  );
our @EXPORT = qw( );
our $VERSION = '0.01';


# ------------------------------------------
# Methods:
# ------------------------------------------


# ------------------------------------------
# new() - Create and return new Runops::Movie::TM object:
# ------------------------------------------
sub new 
{
   my $proto = shift;
   my $class = ref( $proto ) || $proto;
   my $self = {};

   bless $self, $class;
   return $self;
}

1;

__END__

# ------------------------------------------
# Documentation:
# ------------------------------------------

Goes here.