* @copyright 2010-2012 Persistent Objects Ltd * @license GNU General Public License version 2 or later; see LICENSE.txt * * @link http://p-o.co.uk/ */ defined('_JEXEC') or die('Restricted access'); /** * Ajax demonstration component * * @category Joomla_Component * @package Com_Ajaxdemo * @author Alan Hicks * @license GNU General Public License version 2 or later; see LICENSE.txt * * @link http://p-o.co.uk/ */ class TableColour extends JTable { /** * Constructor * * @param object &$db Database connector object * * @return void */ function TableColour( &$db ) { parent::__construct('#__ajaxdemo_colour', 'id', $db); } }