|  |  
 |   |   
 NAMEClass::MakeMethods::Template::Class - Associate information with a package SYNOPSIS  package MyObject;
  use Class::MakeMethods::Template::Class (
    scalar          => [ 'foo' ]
  );
  
  package main;
  
  MyObject->foo('bar')
  print MyObject->foo();
DESCRIPTIONThese meta-methods provide access to class-specific values. They are similar to Static, except that each subclass has separate values. Class:scalarCreates methods to handle a scalar variable in the declaring package. See the documentation on "Generic:scalar" for interfaces and behaviors. Class:arrayCreates methods to handle a array variable in the declaring package. See the documentation on "Generic:array" for interfaces and behaviors. Class:hashCreates methods to handle a hash variable in the declaring package. See the documentation on "Generic:hash" for interfaces and behaviors. 
 
 |