<?php
/**
* Represents a list of Doc comment objects.
*
* @author Craig Knudsen
* @copyright Craig Knudsen, <cknudsen@cknudsen.com>, http://www.k5n.us/
* @license http://www.gnu.org/licenses/gpl.html GNU GPL
* @version $Id: CommentList.class,v 1.3.2.2 2007/08/06 02:28:27 cknudsen Exp $
* @package WebCalendar
* @subpackage Doc
*/
/**
* A list of Doc comment objects.
*/
class CommentList extends DocList {
/**
* Creates a new attachment list for the specified event.
*
* @parm int $event_id The event id
* @return AttachmentList The new AttachmentList object
* @access public
*/
function CommentList ( $event_id )
{
parent::DocList ( $event_id, 'C' );
}
}
?>