/****************************************************************
 * Filename  :	Logo.c
 * Functions :	
 *		Logo_Display
 * Purpose   : 	Functions for the Logo class
 * Comment   : 	This class inherit from Item
 $Revision: 1.1 $
 ***************************************************************/

#include "dmvideo.h"                    /* data manager definitions           */
#include "OVtypes.h"                    /* video overlay type definitions     */
#include "dy4std.h"                     /* DY4 standard definitions           */
#include "video.h"                      /* DY4 video definitions              */
#include "mygraphics.h"                 /* graphics alignment definitions     */
#include "dy4driver.h"                 	/* DY4 driver definitions             */
#include "Logo.h"                      	/* logo definitions                   */

/*---------------------------------------------------------------
 | Function  :	Logo_Display
 | Purpose   : 	Display the Logo on the screen
 | Inputs    :	none
 | Outputs   :	none
 | Side FX   :	none
 | comments  :
 | Author    :	sylvain.coudray MBARI-IFREMER/diti/dsi/ie
 | Modified  :  tarrant 7/14/97 replaced globals with alignment structure
 ---------------------------------------------------------------*/
    void
Logo_Display(OV_alignment *alignment, OV_Item *p_item)
{


	/* write the value of item on screen */

/*debug
	printf ("display a Logo\n");
enddebug*/

	My_wri_logo(alignment, p_item->x, p_item->y, p_item->name,
		    p_item->logo_file);

        return;

} /* Logo_Display */


/*---------------------------------------------------------------
 | Function  :	Logo_cccccc
 | Purpose   : 	
 | Inputs    :	none
 | Outputs   :	none
 | Side FX   :	none
 | comments  :
 | Author    :	sylvain.coudray MBARI-IFREMER/diti/dsi/ie
 ---------------------------------------------------------------*/

	void
Logo_cccccc ( p_item)
OV_Item		*p_item;
{

	/* ... Local Variables */
	/* ... Initializations */
	/* ... Begin */


	/* ... End */

        return;

} /* Logo_cccccc */

