| Text-Editor-Vip documentation | Contained in the Text-Editor-Vip distribution. |
Text::Editor::Vip::View - Buffer visualisation
use Text::Editor::Vip::View
base class to define views for Text::Editor::Vip::Buffer.
creates a new View object.
Khemir Nadim ibn Hamouda CPAN ID: NKH mailto:nadim@khemir.net http:// no web site
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
| 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__