A Qcodo based CMS/ecommerce framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
700 B

<?php
require(__DATAGEN_CLASSES__ . '/ImageSizeTypeGen.class.php');
/**
* The ImageSizeType class defined here contains any
* customized code for the ImageSizeType enumerated type.
*
* It represents the enumerated values found in the "image_size_type" table in the database,
* and extends from the code generated abstract ImageSizeTypeGen
* class, which contains all the values extracted from the database.
*
* Type classes which are generally used to attach a type to data object.
* However, they may be used as simple database indepedant enumerated type.
*
* @package Quasi
* @subpackage DataObjects
*/
abstract class ImageSizeType extends ImageSizeTypeGen {
}
?>