<?php

/**
 * Subclass for representing a row from the 'tblspacecategory' table.
 *
 * 
 *
 * @package lib.model
 */ 
class Tblspacecategory extends BaseTblspacecategory
{
	/**
	 * Initializes internal state of Tblspacecategory object.
	 * @see        parent::__construct()
	 */
	public function __construct()
	{
		// Make sure that parent constructor is always invoked, since that
		// is where any default values for this object are set.
		parent::__construct();
	}

}
