<?php
/**
 * Simple table access for ITS: incident ticket system
 *
 * $Id$
 *
 * @author gERD Schaufelberger <gerd@php-tools.net>
 * @license PHP License
 * @package WB
 * @subpackage db
 */

WBClass::load( 'WBDatasource_SQLCommon'
            , 'WBDatasource_Callback'
            , 'WBDatasource_TableMicroCache'
            , 'WBDatasource_Table'
            , 'WBDatasource_Table_EventQueue'
            , 'WBEvent'
            , 'WBLog' );

/**
 * Simple table access for ITS: incident ticket system
 *
 * Derive from event-queue table access to avoid throwing table events
 *
 * @version 0.1.0
 * @package WB
 * @subpackage db
 */
class WBDatasource_Table_ITS extends WBDatasource_Table_EventQueue
{
}