#ifndef ABOUTREQ_H
#define ABOUTREQ_H
/****************************************************************************
*
* $RCSfile: AboutReq.h $
* $Revision: 1.1 $
* $Date: 1997/08/19 15:10:33 $
* $Author: ssolie $
*
*****************************************************************************
*
* Copyright (c) 1997 Software Evolution.  All Rights Reserved.
*
*****************************************************************************
*
* AboutReq.h -- AboutReq class header file
*
* This file contains the definitions need to use AboutReq objects.
*/

#include <exec/types.h>
#include <exec/ports.h>
#include <intuition/screens.h>


/*** Data types ***/
IMPORT struct AboutReqClass;
typedef struct AboutReqClass *AboutReq;


/*** Function prototypes ***/
AboutReq newAboutReq(struct Screen *screen, struct DrawInfo *draw_info,
	struct MsgPort *msg_port);
VOID deleteAboutReq(AboutReq this);
BOOL handleAboutReqSignal(AboutReq this);


#endif
