Man Page: audio::nama::object
Operating Environment: debian
Section: 3pm
Audio::Nama::Object(3pm) User Contributed Perl Documentation Audio::Nama::Object(3pm)NAMEAudio::Nama::Object - Class builderSYNOPSIS# Define a class package Foo; use Audio::Nama::Object qw{ bux baz }; 1; # Use the class my $object = Foo->new( bux => 1 ); $object->set( bux => 2); print "bux is " . $object->bux . " "; # Define a subclass (automatically inherits parent attributes) package Bar; our @ISA = 'Foo'; my $lonely_bar = Bar->new(); $lonely_bar->set(bux => 3); perl v5.14.2 2011-08-19 Audio::Nama::Object(3pm)
| Related Man Pages |
|---|
| test::object5.18(3) - mojave |
| test::object(3) - osx |
| moosex::types::set::object(3pm) - debian |
| object::id(3pm) - debian |
| test::object(3pm) - debian |
| Similar Topics in the Unix Linux Community |
|---|
| How can I do this in VI editor? |
| Is UNIX an open source OS ? |
| A (ksh) Library For and From UNIX.com |
| New UNIX and Linux History Sections |
| My first PERL incarnation... Audio Oscillograph |