| Myco documentation | Contained in the Myco distribution. |
Myco::Entity::Meta::Query - a Myco entity class
$Revision: 1.4 $ $Date: 2006/02/24 15:03:14 $
A class to prepare and store Tangram Query objects used to generate lists. Acts as a shell in the Myco::Entity::Meta (Myco::Entity::Meta) space to inherit from Myco::QueryTemplate (Myco::QueryTemplate).
| Myco documentation | Contained in the Myco distribution. |
package Myco::Entity::Meta::Query; ############################################################################### # $Id: Query.pm,v 1.4 2006/02/24 15:03:14 sommerb Exp $ ###############################################################################
############################################################################## # Dependencies ############################################################################## # Module Dependencies and Compiler Pragma use warnings; use strict; use Myco::Exceptions; ############################################################################## # Inheritance & Introspection ############################################################################## use base qw( Myco::QueryTemplate ); my $md = Myco::Entity::Meta->new( name => __PACKAGE__ ); ############################################################################## # Object Schema Activation and Metadata Finalization ############################################################################## $md->activate_class; 1; __END__