#ifndef TIMER_H
#define TIMER_H
/****************************************************************************
*
* $RCSfile: Timer.h $
* $Revision: 1.1 $
* $Date: 1997/07/06 03:07:47 $
* $Author: ssolie $
*
*****************************************************************************
*
* Copyright (c) 1997 Software Evolution.  All Rights Reserved.
*
*****************************************************************************
*
* Timer.h -- Timer object header file
*
* This file contains the definitions needed to use docket Timer objects.
*/

#include <exec/types.h>


/*** Data types ***/
IMPORT struct TimerClass;
typedef struct TimerClass *Timer;


/*** Function prototypes ***/
Timer newTimer(VOID);
VOID deleteTimer(Timer this);
VOID startTimer(Timer this, ULONG seconds);
VOID stopTimer(Timer this);
VOID handleTimerSignal(Timer this);
ULONG getTimerSignal(Timer this);


#endif
