Text::Editor::Vip::View - Buffer visualisation


Text-Editor-Vip documentation Contained in the Text-Editor-Vip distribution.

Index


Code Index:

NAME

Top

Text::Editor::Vip::View - Buffer visualisation

SYNOPSIS

Top

  use Text::Editor::Vip::View

DESCRIPTION

Top

base class to define views for Text::Editor::Vip::Buffer.

MEMBER FUNCTIONS

Top

new

creates a new View object.

AUTHOR

Top

	Khemir Nadim ibn Hamouda
	CPAN ID: NKH
	mailto:nadim@khemir.net
	http:// no web site

COPYRIGHT

Top


Text-Editor-Vip documentation Contained in the Text-Editor-Vip distribution.
package Text::Editor::Vip::View;
use strict;
use warnings ;

BEGIN 
{
use Exporter ();
use vars qw ($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
$VERSION     = 0.01_1;
@ISA         = qw (Exporter);
@EXPORT      = qw ();
@EXPORT_OK   = qw ();
%EXPORT_TAGS = ();
}

#-----------------------------------------------------------------

sub new
{

my ($class, %parameters) = @_;

my $self = bless ({}, ref ($class) || $class);

return ($self);
}

#-----------------------------------------------------------------

1;

__END__